-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add an `environment.yml` file for installing AiiDA's dependencies using conda * add a pre-commit hook that updates this file based on `setup_requirements.py` * add a Travis test that tests the conda install and prohibits adding new dependencies if they are not available on conda (either the `defaults` or the `conda-forge` channel`) * update reentry to 1.2.2, which is now available on `conda-forge` Note: Using 'defaults' channel (anaconda channel is currently breaking installs) conda/conda#7872
- Loading branch information
Showing
10 changed files
with
134 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
# See https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html#the-travis-yml-file | ||
if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then | ||
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; | ||
else | ||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; | ||
fi | ||
bash miniconda.sh -b -p $HOME/miniconda | ||
export PATH="$HOME/miniconda/bin:$PATH" | ||
hash -r | ||
conda config --set always_yes yes --set changeps1 no | ||
conda update -q conda | ||
# Useful for debugging any issues with conda | ||
conda info -a |
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 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 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,47 @@ | ||
# Usage: conda env create -f environment.yml | ||
--- | ||
channels: | ||
- defaults | ||
- conda-forge | ||
- etetoolkit | ||
dependencies: | ||
- reentry==1.2.2 | ||
- python-dateutil==2.7.2 | ||
- python-mimeparse==1.6.0 | ||
- django==1.7.11 | ||
- django-extensions==1.5.0 | ||
- tzlocal==1.5.1 | ||
- pytz==2018.4 | ||
- PyYAML==3.12 | ||
- six==1.11.0 | ||
- future==0.16.0 | ||
- pathlib2==2.3.0 | ||
- celery==3.1.25 | ||
- billiard==3.3.0.23 | ||
- amqp==1.4.9 | ||
- anyjson==0.3.3 | ||
- plumpy==0.7.12 | ||
- portalocker==1.1.0 | ||
- psutil==5.4.5 | ||
- meld3==1.0.2 | ||
- numpy==1.14.3 | ||
- SQLAlchemy==1.0.19 | ||
- SQLAlchemy-Utils==0.33.0 | ||
- alembic==0.9.9 | ||
- ujson==1.35 | ||
- enum34==1.1.6 | ||
- voluptuous==0.11.1 | ||
- aldjemy==0.8.0 | ||
- passlib==1.7.1 | ||
- validate_email==1.3 | ||
- click==6.7 | ||
- click-plugins==1.0.3 | ||
- click-spinner==0.1.7 | ||
- tabulate==0.8.2 | ||
- ete3==3.1.1 | ||
- uritools==2.1.0 | ||
- psycopg2==2.7.4 | ||
- paramiko==2.4.2 | ||
- ecdsa==0.13 | ||
- ipython<6.0 | ||
name: aiida |
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,3 +1,3 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
requires = ["setuptools", "wheel", "reentry==1.2.1"] | ||
requires = ["setuptools", "wheel", "reentry==1.2.2"] |
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