-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chnanged the supported Python versions, added a constraint on the num…
…py version
- Loading branch information
1 parent
f53d3e2
commit c7a78bc
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "edsger" | |
dynamic = ["version"] | ||
description = "Graph algorithms in Cython." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.11" | ||
license = {text = "MIT License"} | ||
authors = [ | ||
{ name = "François Pacull", email = "[email protected]" }, | ||
|
@@ -26,7 +26,7 @@ classifiers = [ | |
dependencies = [ | ||
"setuptools", | ||
"setuptools_scm", | ||
"numpy", | ||
"numpy>=1.26", | ||
"Cython>=3", | ||
"pandas", | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Runtime requirements | ||
setuptools | ||
setuptools_scm | ||
numpy | ||
numpy>=1.26 | ||
Cython>=3 | ||
pandas |