Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add timml #7002

Merged
merged 61 commits into from
Nov 15, 2018
Merged
Changes from all commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
4363da9
timml recipe added
mbakker7 Jul 19, 2017
b1a52d4
fixed conda-forge-linter errors
mbakker7 Jul 19, 2017
00aa46d
changed the install command
mbakker7 Jul 19, 2017
40521e2
exclude python < 3.6
mbakker7 Jul 19, 2017
e511f4a
tried to fix all indicated errors/problems
mbakker7 Jul 19, 2017
3958429
added sha256
mbakker7 Jul 19, 2017
633f1f6
fixed directory and check sum of tar ball
mbakker7 Jul 21, 2017
d7f1684
added fn and sha256 to source
mbakker7 Jul 21, 2017
c4c82bc
changed checksum to what circleci wants
mbakker7 Jul 21, 2017
2bfdce0
Update meta.yaml
jentjr Jul 21, 2017
95c7795
Merge pull request #1 from jentjr/patch-1
mbakker7 Jul 21, 2017
6959d5e
fixed the checksum (again)
mbakker7 Jul 21, 2017
1e4cd7d
modified meta.yaml and added build scripts for *nix and windows
jentjr Jul 22, 2017
d68e2a3
add build scripts
jentjr Jul 22, 2017
4950252
Merge pull request #2 from jentjr/master
mbakker7 Jul 22, 2017
fc9716b
fix typo in description. will tricker new build attempt
mbakker7 Jul 22, 2017
6447b3d
add back toolchain3
jentjr Jul 25, 2017
1fcd892
add conda_build_config.yaml
jentjr Jul 25, 2017
742782e
added conda_build_config.yaml
jentjr Jul 25, 2017
c231723
build variants
jentjr Jul 25, 2017
b80f6a1
conda build 3
jentjr Jul 26, 2017
c2ee4c3
remove compiler specification
jentjr Jul 26, 2017
5ea5587
update min_pin requirements
jentjr Jul 26, 2017
eb1c9a5
features not needed
jentjr Jul 28, 2017
ac67be0
fix merge conflicts
jentjr Jul 28, 2017
63d21f0
Merge pull request #3 from jentjr/master
mbakker7 Jul 28, 2017
291ec1d
working on timml conda-build recipe
jentjr Nov 21, 2017
d08897b
Merge branch 'master' of https://github.com/jentjr/staged-recipes
jentjr Nov 21, 2017
d6df8ce
added test to conda build recipe
jentjr Dec 17, 2017
bf03128
Delete run_test.py
jentjr Nov 4, 2018
28b1eea
Delete conda_build_config.yaml
jentjr Nov 4, 2018
84501a6
Merge remote-tracking branch 'upstream/master'
jentjr Nov 4, 2018
bd4ff94
Merge remote-tracking branch 'origin/master'
jentjr Nov 4, 2018
dc05000
Update meta.yaml
jentjr Nov 4, 2018
662d81a
Merge branch 'master' of https://github.com/jentjr/staged-recipes
jentjr Nov 4, 2018
9f1267c
use compiler option for timml
jentjr Nov 5, 2018
32c1f1b
define minimum versions
jentjr Nov 5, 2018
fb24b7d
Update meta.yaml
jentjr Nov 5, 2018
e1dd929
Delete conda_build_config.yaml
jentjr Nov 5, 2018
c63f271
Merge pull request #4 from jentjr/patch-1
mbakker7 Nov 5, 2018
dc063cc
Merge pull request #5 from jentjr/patch-2
mbakker7 Nov 5, 2018
61a5dce
Merge remote-tracking branch 'origin/patch-1'
jentjr Nov 6, 2018
0e979c9
Merge remote-tracking branch 'origin/patch-2'
jentjr Nov 6, 2018
98b3bff
remove lint
jentjr Nov 6, 2018
ba57826
Merge remote-tracking branch 'origin/patch-3'
jentjr Nov 6, 2018
ccfa0ca
Update meta.yaml
jentjr Nov 6, 2018
f453fa3
Create bld.bat
jentjr Nov 6, 2018
daac1ab
Delete bld.bat
jentjr Nov 6, 2018
122b8a0
Create bld.bat
jentjr Nov 7, 2018
87d5b19
try using --compiler=msvc
jentjr Nov 7, 2018
4247828
try removing build section of yml
jentjr Nov 7, 2018
c42278a
try with msvc in bld.bat
jentjr Nov 7, 2018
ecbf8bd
try with buid_ext --inplace in bld.bat
jentjr Nov 7, 2018
244f65f
Merge branch 'master' of https://github.com/conda-forge/staged-recipes
jentjr Nov 7, 2018
a75f0c1
try adding zlib to host and run
jentjr Nov 7, 2018
2733e34
try specifying the compiler using pinning-feedstock
jentjr Nov 9, 2018
aaaa410
try using pip
jentjr Nov 11, 2018
bc53aac
try using pip
jentjr Nov 11, 2018
2982d67
Merge branch 'master' of https://github.com/jentjr/staged-recipes
jentjr Nov 11, 2018
efbecfe
revert back to python setup.py install
jentjr Nov 11, 2018
f92d16d
Update meta.yaml
jentjr Nov 15, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
50 changes: 50 additions & 0 deletions recipes/timml/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set name = "timml" %}
{% set version = "5.0.1" %}
{% set sha256 = "2790663285e22e5a58dfe38f16166c0b09b610890205d98996fd0c72491cbb18" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/mbakker7/{{ name }}/archive/{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
skip: True # [py<35]
script: python setup.py install

requirements:
build:
- {{ compiler('fortran') }}
- {{ compiler('m2w64_c') }} # [win]
- {{ compiler('m2w64_fortran') }} # [win]
host:
- m2w64-toolchain # [win]
- libpython # [win]
- python
- numpy >=1.12
- scipy
- matplotlib >=2.0
run:
- python
- {{ pin_compatible('numpy') }}
- scipy
- matplotlib >=2.0

test:
imports:
- timml

about:
home: https://github.com/mbakker7/timml
license: MIT
license_file: LICENSE
summary: 'TimML is a multi-layer analytic element model'
dev_url: https://github.com/mbakker7/timml

extra:
recipe-maintainers:
- mbakker7
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mbakker7 - are you OK with being a maintainer here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, absolutely. I am very glad @jentjr submitted this and I will happily be the maintainer.

- jentjr