Skip to content

Commit

Permalink
bump versions and switch to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouy committed Jun 21, 2024
1 parent b5e117b commit 8f5cbb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ jobs:
include:
- label: earliest
os: ubuntu-latest
python-version: 3.8
rdkit-version: "rdkit=2021.03.1"
python-version: 3.9
rdkit-version: "rdkit==2022.09.1"
coverage: false
- label: baseline
os: ubuntu-latest
python-version: "3.10"
rdkit-version: "rdkit~=2022.09"
rdkit-version: "rdkit~=2023.03.1"
coverage: true
- label: latest
os: ubuntu-latest
Expand All @@ -58,14 +58,10 @@ jobs:
uses: actions/checkout@v4

- name: Setup Conda
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
channel-priority: flexible
channels: conda-forge, defaults
add-pip-as-python-dependency: true
architecture: x64
use-mamba: true
miniforge-variant: Mambaforge

Expand All @@ -79,13 +75,13 @@ jobs:
- name: Install conda dependencies
run: |
mamba install ${{ matrix.rdkit-version }}
mamba install uv ${{ matrix.rdkit-version }}
mamba list
- name: Install package through pip
run: |
pip install .[dev]
pip list
uv pip install .[dev]
uv pip list
- name: Run tests
run: |
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ authors = [
{ name = "Cédric Bouysset", email = "[email protected]" },
]
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 8f5cbb6

Please sign in to comment.