Skip to content

Commit

Permalink
fix CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouy committed Aug 26, 2024
1 parent 5bb80a0 commit 6d69af3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,18 @@ jobs:
- label: earliest
os: ubuntu-latest
python-version: 3.9
rdkit-version: "rdkit==2022.09.1"
mamba-deps: "rdkit==2022.09.1"
coverage: false
- label: baseline
os: ubuntu-latest
python-version: "3.10"
rdkit-version: "rdkit~=2023.03.1"
mamba-deps: "rdkit~=2023.03.1"
coverage: true
- label: latest
os: ubuntu-latest
python-version: "3.12"
rdkit-version: "rdkit"
# remove numpy<2 when MDAnalysis 2.8.0 is released
mamba-deps: "rdkit numpy<2"
coverage: false

steps:
Expand All @@ -75,7 +76,7 @@ jobs:
- name: Install conda dependencies
run: |
mamba install uv ${{ matrix.rdkit-version }}
mamba install uv ${{ matrix.mamba-deps }}
mamba list
- name: Install package through pip
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ exclude = [
"site-packages",
]

[tool.ruff.format]
exclude = ["*.ipynb"]

[tool.ruff.lint]
select = [
# pycodestyle
Expand Down

0 comments on commit 6d69af3

Please sign in to comment.