-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyproject.toml: Require cysignals >= 1.11.3
- Loading branch information
Matthias Koeppe
committed
Mar 25, 2024
1 parent
7eb6beb
commit de9349c
Showing
2 changed files
with
7 additions
and
2 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
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,7 +1,7 @@ | ||
[build-system] | ||
requires = ["setuptools", | ||
"Cython>=0.29", | ||
"cysignals>=1.7"] | ||
"cysignals>=1.11.3"] | ||
# We need access to the autogen package at build time. | ||
# Hence we declare a custom build backend. | ||
build-backend = "_custom_build_meta" # just re-exports setuptools.build_meta definitions | ||
|
@@ -17,7 +17,7 @@ maintainers = [ | |
{name = "SageMath developers", email = "[email protected]"}, | ||
] | ||
dependencies = [ | ||
"cysignals>=1.7", | ||
"cysignals>=1.11.3", | ||
] | ||
requires-python = ">=3.9" | ||
readme = "README.rst" | ||
|