-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from bourque/add-3.8-and-3.9-support
Support python 3.8 and 3.9
- Loading branch information
Showing
9 changed files
with
122 additions
and
17 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 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,5 +1,12 @@ | ||
#!/bin/bash | ||
echo "Creating conda environment for Python $PYTHON_VERSION" | ||
conda env create -f "env/environment-${PYTHON_VERSION}.yml" || exit 1 | ||
echo "Creating base conda environment for Python $PYTHON_VERSION" | ||
conda create --yes --prefix /home/travis/envs python=$PYTHON_VERSION | ||
conda activate /home/travis/envs | ||
|
||
echo "Creating ExoCTK conda environment for Python $PYTHON_VERSION" | ||
conda env update -f "env/environment-${PYTHON_VERSION}.yml" || exit 1 | ||
export CONDA_ENV=exoctk-$PYTHON_VERSION | ||
source activate $CONDA_ENV | ||
source activate $CONDA_ENV | ||
|
||
echo "The installed environment:" | ||
conda env export |
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,48 @@ | ||
name: exoctk-3.8 | ||
channels: | ||
- defaults | ||
- http://ssb.stsci.edu/astroconda | ||
dependencies: | ||
- astropy<4.1 | ||
- bokeh=2.2.3 | ||
- boto3 | ||
- cython=0.29.21 | ||
- docopt=0.6.2 | ||
- docutils=0.16 | ||
- flake8=3.8.4 | ||
- flask=1.1.2 | ||
- gunicorn=20.0.4 | ||
- h5py=2.10.0 | ||
- ipython=7.20.0 | ||
- jupyter=1.0.0 | ||
- matplotlib=3.3.4 | ||
- numpy=1.19.2 | ||
- numpydoc=1.1.0 | ||
- pandas=1.2.1 | ||
- paramiko=2.7.2 | ||
- pip=20.3.3 | ||
- pytest=6.2.2 | ||
- python=3.8.5 | ||
- pyyaml | ||
- scipy=1.6.0 | ||
- scp=0.13.3 | ||
- sphinx=3.4.3 | ||
- sqlalchemy=1.3.23 | ||
- wtforms=2.3.3 | ||
- pip: | ||
- asteval==0.9.22 | ||
- astroquery==0.4.1 | ||
- awscli | ||
- bandit==1.7.0 | ||
- batman-package==2.4.7 | ||
- bibtexparser==1.2.0 | ||
- corner==2.1.0 | ||
- flask_wtf==0.14.3 | ||
- lmfit==1.0.2 | ||
- platon==5.1.2 | ||
- pysiaf==0.10.0 | ||
- pysynphot==1.0.0 | ||
- sphinx_astropy==1.3 | ||
- svo-filters==0.2.16 | ||
- werkzeug==0.16.1 | ||
- git+https://github.com/spacetelescope/jwst_gtvt.git@cd6bc76f66f478eafbcc71834d3e735c73e03ed5 |
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: exoctk-3.9 | ||
channels: | ||
- defaults | ||
- http://ssb.stsci.edu/astroconda | ||
dependencies: | ||
- astropy=4.2 | ||
- bokeh=2.2.3 | ||
- boto3 | ||
- cython=0.29.21 | ||
- docopt=0.6.2 | ||
- flake8=3.8.4 | ||
- flask=1.1.2 | ||
- h5py=2.10.0 | ||
- ipython=7.20.0 | ||
- jupyter=1.0.0 | ||
- matplotlib=3.3.4 | ||
- numpy=1.19.2 | ||
- numpydoc=1.1.0 | ||
- pandas=1.2.2 | ||
- paramiko=2.7.2 | ||
- pip=20.3.3 | ||
- pytest=6.2.2 | ||
- python=3.9.1 | ||
- pyyaml | ||
- scipy=1.6.0 | ||
- scp=0.13.3 | ||
- sphinx=3.4.3 | ||
- sqlalchemy=1.3.23 | ||
- wtforms=2.3.3 | ||
- pip: | ||
- asteval==0.9.22 | ||
- astroquery==0.4.1 | ||
- awscli | ||
- bandit==1.7.0 | ||
- batman-package==2.4.7 | ||
- bibtexparser==1.2.0 | ||
- corner==2.1.0 | ||
- docutils==0.15.2 | ||
- flask_wtf==0.14.3 | ||
- gunicorn==20.0.4 | ||
- lmfit==1.0.2 | ||
- platon==5.1.2 | ||
- pysiaf==0.10.0 | ||
- pysynphot==1.0.0 | ||
- sphinx_astropy==1.3 | ||
- svo-filters==0.2.16 | ||
- werkzeug==0.16.1 | ||
- git+https://github.com/spacetelescope/jwst_gtvt.git@cd6bc76f66f478eafbcc71834d3e735c73e03ed5 |
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