-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* requirements overhaul * remove gen_conda_requirements * fixup pip requirements and relocate ci * fix travis-ci * fix core spacing * update readthedocs config
- Loading branch information
Showing
16 changed files
with
175 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,7 @@ | ||
# Dependencies for a feature complete installation | ||
# ------------------------------------------------ | ||
# Optional dependencies. | ||
|
||
# esmpy regridding not available through pip. | ||
#conda: esmpy>=7.0 | ||
#gdal : under review -- not tested at present | ||
mo_pack | ||
nc-time-axis | ||
pandas | ||
stratify #conda: python-stratify | ||
pyugrid | ||
|
||
#conda: graphviz | ||
|
||
# Iris sample data is not available through pip. It can be installed from | ||
# https://github.com/SciTools/iris-sample-data/archive/master.zip | ||
#conda: iris-sample-data | ||
stratify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
py37.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: iris-dev | ||
|
||
channels: | ||
- conda-forge | ||
|
||
dependencies: | ||
- python=3.6 | ||
|
||
# Setup dependencies. | ||
- setuptools>=40.8.0 | ||
- pyke | ||
|
||
# Core dependencies. | ||
- cartopy>=0.18 | ||
- cf-units>=2 | ||
- cftime | ||
- dask>=2 | ||
- matplotlib | ||
- netcdf4 | ||
- numpy>=1.14 | ||
- python-xxhash | ||
- scipy | ||
|
||
# Optional dependencies. | ||
- esmpy>=7.0 | ||
- graphviz | ||
- iris-sample-data | ||
- mo_pack | ||
- nc-time-axis | ||
- pandas | ||
- python-stratify | ||
- pyugrid | ||
|
||
# Test dependencies. | ||
- asv | ||
- black=19.10b0 | ||
- filelock | ||
- imagehash>=4.0 | ||
- nose | ||
- pillow<7 | ||
- pre-commit | ||
- requests | ||
|
||
# Documentation dependencies. | ||
- sphinx | ||
- sphinx-copybutton | ||
- sphinx-gallery | ||
- sphinx_rtd_theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: iris-dev | ||
|
||
channels: | ||
- conda-forge | ||
|
||
dependencies: | ||
- python=3.7 | ||
|
||
# Setup dependencies. | ||
- setuptools>=40.8.0 | ||
- pyke | ||
|
||
# Core dependencies. | ||
- cartopy>=0.18 | ||
- cf-units>=2 | ||
- cftime | ||
- dask>=2 | ||
- matplotlib | ||
- netcdf4 | ||
- numpy>=1.14 | ||
- python-xxhash | ||
- scipy | ||
|
||
# Optional dependencies. | ||
- esmpy>=7.0 | ||
- graphviz | ||
- iris-sample-data | ||
- mo_pack | ||
- nc-time-axis | ||
- pandas | ||
- python-stratify | ||
- pyugrid | ||
|
||
# Test dependencies. | ||
- asv | ||
- black=19.10b0 | ||
- filelock | ||
- imagehash>=4.0 | ||
- nose | ||
- pillow<7 | ||
- pre-commit | ||
- requests | ||
|
||
# Documentation dependencies. | ||
- sphinx | ||
- sphinx-copybutton | ||
- sphinx-gallery | ||
- sphinx_rtd_theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
iris.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
# Absolute minimal dependencies for iris | ||
# -------------------------------------- | ||
|
||
# Without these, iris won't even import. | ||
# Core dependencies. | ||
|
||
cartopy>=0.18 | ||
cf-units>=2 | ||
cftime | ||
dask[array]>=2 #conda: dask>=2 | ||
dask[array]>=2 | ||
matplotlib | ||
netcdf4 | ||
numpy>=1.14 | ||
scipy | ||
xxhash #conda: python-xxhash | ||
xxhash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Documentation dependencies. | ||
|
||
sphinx | ||
sphinx_rtd_theme | ||
sphinx-copybutton | ||
sphinx-gallery | ||
sphinx_rtd_theme |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.