Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Check we have the right python #78

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
python-version: "3.7"
- os: ubuntu-latest
python-version: "3.8"
- os: ubuntu-latest
python-version: "3.9"
# # Disable for py39 -- unsolvable as of 2020.12.11
# - os: ubuntu-latest
# python-version: "3.9"
- os: macos-latest
python-version: "3.6"
- os: windows-latest
Expand All @@ -49,6 +50,13 @@ jobs:
environment-file: devtools/conda-envs/test_env.yml
auto-activate-base: false

- name: Ensure we have the right Python
shell: bash -l {0}
run: |
echo "Installed Python: $(python --version)"
echo "Expected: ${{ matrix.cfg.python-version }}"
python --version | grep "Python ${{ matrix.cfg.python-version }}"

- name: Additional info about the build
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions devtools/conda-envs/test_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ dependencies:
- pip
- jupyter
- jupyterlab
- rdkit>=2018.09.2.0
- rdkit>=2018.09.2.0,<2020.09.2
- scikit-learn
- biopandas
- seaborn
- pypdb
- pypdb 1.*
- requests-cache
- chembl_webresource_client
- nglview
Expand Down
4 changes: 2 additions & 2 deletions devtools/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ requirements:
- jupyterlab
- ipywidgets>=7.5
# Cheminformatics
- rdkit>=2018.09.2.0
- rdkit>=2018.09.2.0,<2020.09.2
- scikit-learn
- biopandas
- seaborn
- pypdb
- pypdb 1.*
- chembl_webresource_client
- nglview
- requests
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ dependencies:
- pip
- jupyter
- jupyterlab
- rdkit>=2018.09.2.0
- rdkit>=2018.09.2.0,<2020.09.2
- scikit-learn
- biopandas
- seaborn
- pypdb
- pypdb 1.*
- requests-cache
- chembl_webresource_client
- nglview
Expand Down