-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We currently support Python interpreters 3.7 and newer, and Cython 3 supports Python interpreters 3.8 and newer. This patch updates the pip dependencies dependencies to prefer Cython 3 for interpreters 3.8 and newer, keeping the older version of Cython as a dependency for interpreter 3.7. Signed-off-by: Patrick M. Niedzielski <[email protected]>
- Loading branch information
1 parent
8501bd8
commit 75e90f1
Showing
3 changed files
with
8 additions
and
5 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Support building with Cython 3 |
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,3 +1,4 @@ | ||
-r requirements-test.txt | ||
pytest-cov | ||
Cython | ||
Cython >= 0.29, <3; python_version < "3.8" | ||
Cython >=3, <4; python_version >= "3.8" |