Skip to content

Commit

Permalink
uniformize the python version requirements (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogeiger authored Dec 17, 2024
1 parent 3557c31 commit f8b2971
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
matrix:
include:
- runner: "ubuntu-latest"
python-version: "3.9"
python-version: "3.10"
- runner: "ubuntu-latest"
python-version: "3.12"
- runner: "self-hosted"
Expand Down
4 changes: 1 addition & 3 deletions cuequivariance/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ description = "CUDA accelerated equivariant operations"
readme = "../README.md"
license = { file = "../LICENSES/LICENSE" }
authors = [{ name = "NVIDIA Corporation" }]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
Expand All @@ -35,11 +35,9 @@ dependencies = [
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.hatch.version]
Expand Down
1 change: 0 additions & 1 deletion cuequivariance_jax/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.hatch.version]
Expand Down
3 changes: 1 addition & 2 deletions cuequivariance_torch/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ description = "CUDA accelerated equivariant operations"
readme = "../README.md"
license = { file = "../LICENSES/LICENSE" }
authors = [{ name = "NVIDIA Corporation" }]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"cuequivariance",
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down

0 comments on commit f8b2971

Please sign in to comment.