Skip to content

Commit

Permalink
Merge pull request #151 from volkamerlab/add-numpy-to-env
Browse files Browse the repository at this point in the history
Add `numpy`+`jsonschema` to env + drop Python 3.6 in CI (use 3.7 instead)
  • Loading branch information
dominiquesydow authored Oct 4, 2021
2 parents 2684847 + a579092 commit e36208e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
matrix:
cfg:
- os: ubuntu-latest
python-version: "3.6"
python-version: "3.7"
- os: ubuntu-latest
python-version: "3.9"
- os: macos-latest
python-version: "3.6"
python-version: "3.7"
- os: windows-latest
python-version: "3.6"
python-version: "3.7"

env:
PYVER: ${{ matrix.cfg.python-version }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.6
python-version: 3.7
channel-priority: true
auto-activate-base: true
channels: conda-forge,defaults
Expand Down
6 changes: 5 additions & 1 deletion devtools/other-conda-envs/users_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ name: teachopencadd
channels:
- conda-forge
dependencies:
- python>=3.6
- python>=3.7
- pip
- jupyter
- jupyterlab>=3
# Explicitly add numpy because of https://github.com/volkamerlab/teachopencadd/issues/150
- numpy
- rdkit>=2021.03
- scikit-learn
- biopandas
Expand All @@ -18,6 +20,8 @@ dependencies:
- openbabel
- tqdm
- lxml
# Remove jsonschema once this issue is fixed: https://github.com/Yelp/bravado/issues/478
- jsonschema<4.0.0
- bravado
- beautifulsoup4
- ipywidgets>=7.5
Expand Down
6 changes: 5 additions & 1 deletion devtools/test_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
channels:
- conda-forge
dependencies:
- python>=3.6
- python>=3.7
- pip
- jupyter
- jupyterlab>=3
# Explicitly add numpy because of https://github.com/volkamerlab/teachopencadd/issues/150
- numpy
- rdkit>=2021.03
- scikit-learn
- biopandas
Expand All @@ -18,6 +20,8 @@ dependencies:
- openbabel
- tqdm
- lxml
# Remove jsonschema once this issue is fixed: https://github.com/Yelp/bravado/issues/478
- jsonschema<4.0.0
- bravado
- beautifulsoup4
- ipywidgets>=7.5
Expand Down

0 comments on commit e36208e

Please sign in to comment.