Skip to content

Commit 3084019

Browse files
committed
Drop 3.9 support in pyproject.toml and uv
1 parent 7df0fe9 commit 3084019

File tree

3 files changed

+60
-624
lines changed

3 files changed

+60
-624
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def base_test(session):
2525
def test(session):
2626
base_test(session)
2727

28-
@nox.session(python=["3.9", "3.10", "3.11", "3.12"])
28+
@nox.session(python=["3.10", "3.11", "3.12", "3.13"])
2929
def test_with_version(session):
3030
base_test(session)
3131

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rustworkx"
33
version = "0.17.1"
44
description = "A High-Performance Graph Library for Python"
5-
requires-python = ">=3.9"
5+
requires-python = ">=3.10"
66
dependencies = [
77
"numpy>=1.16.0,<3"
88
]
@@ -13,7 +13,6 @@ classifiers=[
1313
"Intended Audience :: Science/Research",
1414
"Programming Language :: Rust",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)