Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobnissen committed Jun 25, 2024
1 parent c4a49c6 commit 160bfac
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -30,4 +30,4 @@ jobs:
pip install pytest
pip install -e .
- name: Run tests
run: python -m pytest test -We
run: python -m pytest test
23 changes: 12 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
name = "vamb"
dynamic = ["version"]
dependencies = [
"numpy == 1.24.2",
"torch == 1.13.1",
"numpy == 1.26.4",
"torch == 2.3.1",
"pycoverm == 0.6.0",
"networkx == 3.1",
"scikit-learn == 1.2.2",
"pandas == 2.0.0",
"dadaptation == 3.0",
"networkx == 3.2", # 3.3 drops Python 3.9 support
"scikit-learn == 1.5.0",
"pandas == 2.2.0",
"dadaptation == 3.2",
"loguru == 0.7.2",
]
# Currently pycoverm does not have binaries for Python > 3.11.
# The dependency resolver, will not error on Python 3.11, but attempt
# Currently pycoverm does not have binaries for Python > 3.12.
# The dependency resolver, will not error on Python 3.13, but attempt
# to build pycoverm from source, but will not get the deps required for that.
requires-python = "<3.12,>=3.9.0"
requires-python = "<3.13,>=3.9.0"
scripts = {vamb = "vamb.__main__:main"}

[metadata]
Expand All @@ -30,9 +30,9 @@ readme = {file = "README.md"}

[build-system]
requires = [
"setuptools ~= 64.0",
"setuptools ~= 70.1",
"setuptools-scm >= 8.0",
"Cython ~= 0.29.5"
"Cython ~= 3.0.1"
]
build-backend = "setuptools.build_meta"

Expand All @@ -43,6 +43,7 @@ lint.ignore = ["E722", "E501"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning",
]

Expand Down

0 comments on commit 160bfac

Please sign in to comment.