-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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 SunPy, Glymur and wcsaxes #605
Changes from 7 commits
a386ad1
842876c
ff73070
5c813bb
485fded
41da752
d4229db
fe7ec47
2b236e7
a0a98d0
813785e
385a9e8
e7510b6
759ecc3
a026ef3
fe565a7
7a668a9
17eab4a
8e90e61
d8ca88f
32523fb
d18c269
75ea212
6f06e28
d940dbb
7a374c9
1feba7d
165325a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{% set version = "0.8.3" %} | ||
package: | ||
name: glymur | ||
version: {{ version }} | ||
|
||
source: | ||
fn: Glymur-0.8.3.tar.gz | ||
url: https://pypi.python.org/packages/33/6e/3bb303c46e2b9a795389115401fd32f1eff16c12a66c7a53fa36c244f9bc/Glymur-0.8.3.tar.gz | ||
md5: 2ff4c70a63a1e01f84b18e0ec4eb9b88 | ||
|
||
build: | ||
number: 0 | ||
script: python setup.py install --single-version-externally-managed --record record.txt | ||
entry_points: | ||
- jp2dump=glymur.command_line:main | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- numpy >=1.7.0 | ||
- lxml >=2.3.2 | ||
- mock | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's probably only a build dep. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just for tests. I should remove that... On Fri, May 13, 2016 at 11:59 AM, Filipe notifications@github.com wrote:
John Evans There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it needs it to build, but I have now removed it from the runtime deps. |
||
- contextlib2 >=0.4 | ||
|
||
run: | ||
- python | ||
- numpy >=1.7.0 | ||
- lxml >=2.3.2 | ||
- mock | ||
- contextlib2 >= 0.4 | ||
|
||
test: | ||
# Python imports | ||
imports: | ||
- glymur | ||
- glymur.data | ||
- glymur.lib | ||
- glymur.lib.test | ||
- glymur.test | ||
|
||
commands: | ||
- jp2dump --help | ||
|
||
about: | ||
home: https://github.com/quintusdias/glymur | ||
license: MIT License | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can drop the extra |
||
summary: 'Tools for accessing JPEG2000 files' | ||
|
||
extra: | ||
recipe-maintainers: | ||
- cadair | ||
- ehsteve | ||
- quintusdias | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Cadair please check with @ehsteve and @quintusdias if they are OK being maintainers here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ehsteve is one of the core SunPy devs and it's @quintusdias package on PyPi. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
{% set version = "0.6.4" %} | ||
|
||
package: | ||
name: sunpy | ||
version: {{version}} | ||
|
||
source: | ||
fn: sunpy-{{version}}.tar.gz | ||
url: https://pypi.python.org/packages/source/s/sunpy/sunpy-{{version}}.tar.gz | ||
md5: 45da6a4328fc5c85c717686f8aae2d23 | ||
|
||
build: | ||
number: 0 | ||
script: python setup.py install --offline --no-git --single-version-externally-managed --record record.txt | ||
skip: True # [py>27] | ||
|
||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- numpy >1.7.1 | ||
- astropy >=1.0 | ||
- scipy | ||
- matplotlib | ||
- pandas | ||
- mock | ||
|
||
run: | ||
- python | ||
- numpy >1.7.1 | ||
- astropy >=1.0 | ||
- scipy | ||
- pandas >=0.12.1 | ||
- matplotlib | ||
- suds-jurko | ||
- glymur | ||
- sqlalchemy | ||
- beautiful-soup | ||
- requests | ||
- bsddb # [unix] | ||
- pytest | ||
- scikit-image | ||
- wcsaxes | ||
|
||
test: | ||
# Python imports | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can remove this comment. |
||
imports: | ||
- sunpy | ||
- sunpy.cm | ||
- sunpy.coordinates | ||
- sunpy.data | ||
- sunpy.data.test | ||
- sunpy.data.test.waveunit | ||
- sunpy.database | ||
- sunpy.database.tests | ||
- sunpy.image | ||
- sunpy.image.tests | ||
- sunpy.instr | ||
- sunpy.instr.iris | ||
- sunpy.io | ||
- sunpy.io.tests | ||
- sunpy.lightcurve | ||
- sunpy.lightcurve.sources | ||
- sunpy.lightcurve.tests | ||
- sunpy.map | ||
- sunpy.map.sources | ||
- sunpy.map.tests | ||
- sunpy.net | ||
- sunpy.net.hek | ||
- sunpy.net.hek2vso | ||
- sunpy.net.helio | ||
- sunpy.net.jsoc | ||
- sunpy.net.tests | ||
- sunpy.net.vso | ||
- sunpy.physics | ||
- sunpy.physics.transforms | ||
- sunpy.roi | ||
- sunpy.spectra | ||
- sunpy.spectra.sources | ||
- sunpy.spectra.tests | ||
- sunpy.sun | ||
- sunpy.sun.tests | ||
- sunpy.tests | ||
- sunpy.tests.tests | ||
- sunpy.time | ||
- sunpy.time.tests | ||
- sunpy.util | ||
- sunpy.util.tests | ||
- sunpy.visualization | ||
- sunpy.wcs | ||
- sunpy.wcs.tests | ||
|
||
about: | ||
home: http://www.sunpy.org/ | ||
license: BSD 2-Clause | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
summary: "Python for Solar Physics" | ||
|
||
extra: | ||
recipe-maintainers: | ||
- cadair | ||
- ehsteve |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In theory is not need as we only build
numpy > 1.9
already, but I guess it does not hurt.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i suppose the only use would be if someone has some custom packages coming from somewhere else. It's probably worth keeping.