Skip to content

Commit

Permalink
ENH: Restrict dependencies versions for release (#67)
Browse files Browse the repository at this point in the history
Restrict dependencies versions for release.

Restrict the supported Python versions to those where the tool is known
to be working (>=3.9, <3.12).
  • Loading branch information
jhlegarreta authored Dec 10, 2024
1 parent 416ab88 commit a653517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11']
requires: ['minimal', 'latest']

steps:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ classifiers = [
]
dependencies = [
"numpy>=1.23.0,<2.0.0",
"nibabel>=3.0.0",
"vtk"
"nibabel>=3.0.0,<4.0.0",
"vtk>8.1.0,<=9.4.0"
]
dynamic = ["version"]
requires-python = ">=3.9"
requires-python = ">=3.9,<3.12"

[project.optional-dependencies]
doc = [
Expand Down

0 comments on commit a653517

Please sign in to comment.