-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrequirements.yml
85 lines (60 loc) · 2.28 KB
/
requirements.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Sample requirements file.
# Each package gets its own section. Hopefully the package you are building
# only needs name and version, but there are several other options.
# - name: ccdproc
# Version should match the version on PyPI. Versions that could be
# interpreted as numbers (e.g. 0.1) must be enclosed in quotes.
# If version is omitted then the most recent version available from
# the package source (either conda-forge or PyPI) will be built.
# version: '0.3.3' # Can be omitted...
# # Some packages need extra options passed to setup.py install. This
# # is the place to provide those options.
# setup_options: '--offline' # Defaults to empty if omitted.
# # If the package contains compiled extensions that link to numpy this
# # must be set to true to ensure the package is built properly.
# # If in doubt, set it to true...though it should *always be false*
# # for a pure python package.
# numpy_compiled_extensions: false # Defaults to false if omitted.
# # Some packages can only be built for specific versions of python but
# # setup.py often does not contain those restrictions (and conda skeleton
# # ignores it if present), so list restrictions on python version here.
# python: '>=2.7|>=3.4' # if omitted, no restriction on python builds.
# # Some packages can only be built for certain platforms. List the EXCLUDED
# # platforms here. Platform names are shown below...note that listing all
# # platforms would result in no builds!
# # Default, if omitted, is to build on all platforms listed below.
# excluded_platforms:
# - 'win-64'
# - 'linux-64'
# - 'osx-64'
# An example of a simple requirement.
- name: hgtools
version: '6.3'
- name: contextlib2
- name: Glymur
python: '2.7*'
- name: sunpy
- name: openjpeg
excluded_platforms:
- 'win-64'
- name: healpy
numpy_compiled_extensions: true
numpy_build_restrictions: '>=1.11*,<1.12'
excluded_platforms:
- 'win-64'
- name: cfitsio
- name: fitsio
version: '0.9.10'
numpy_compiled_extensions: true
python: '>2.6|>=3.4'
excluded_platforms:
- 'win-64'
- name: mpdaf
version: '2.2'
numpy_compiled_extensions: true
python: '>2.6|>=3.4'
excluded_platforms:
- 'win-64'
- name: sep
version: '1.0.0'
numpy_compiled_extensions: true