Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uniformize the python version requirements #47

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading