-
Notifications
You must be signed in to change notification settings - Fork 409
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
RFE: please provide cython 3.x support #1083
Comments
We've built asyncpg in Fedora Linux with Cython 3.0.5 successfully, although with quite a few warnings. Build warnings
|
After trimming build dependencies using below patch --- a/pyproject.toml
+++ b/pyproject.toml
@@ -50,7 +50,7 @@
"setuptools>=60",
"wheel",
- "Cython(>=0.29.24,<3.0.0)"
+ "Cython(>=3.0.0)"
]
build-backend = "setuptools.build_meta"
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@
from setuptools.command import build_ext as setuptools_build_ext
-CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
+CYTHON_DEPENDENCY = 'Cython(>=0.30.0)'
CFLAGS = ['-O2']
LDFLAGS = [] Looks like build is OK. Closing. |
https://github.com/MagicStack/asyncpg/blob/master/pyproject.toml#L45-L49
The text was updated successfully, but these errors were encountered: