This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit 9f1c0ffc3f39fb1d188fc5d032a0424589e1d22c
Author: Dave Andreoli <[email protected]>
AuthorDate: Fri Aug 29 22:06:31 2025 +0200
No need to check Cython, it's pinned
---
setup.py | 20 +-------------------
1 file changed, 1 insertion(+), 19 deletions(-)
diff --git a/setup.py b/setup.py
index 5230278..2a88e81 100755
--- a/setup.py
+++ b/setup.py
@@ -15,9 +15,6 @@ script_path = os.path.dirname(os.path.abspath(__file__))
# dependencies
EFL_MIN_VER = '1.28.0'
-CYTHON_MIN_VERSION = '3.0.0'
-CYTHON_MAX_VERSION = '3.99.99'
-CYTHON_BLACKLIST = ()
# basic utils
@@ -143,22 +140,7 @@ if {'build', 'build_ext', 'install', 'bdist', 'bdist_wheel', 'sdist'} & set(sys.
import Cython
import Cython.Compiler.Options
except ImportError:
- raise SystemExit('not found! Needed >= %s' % CYTHON_MIN_VERSION)
-
- # check min version
- if Version(Cython.__version__) < Version(CYTHON_MIN_VERSION):
- raise SystemExit('too old! Found %s (need at least %s)' % (
- Cython.__version__, CYTHON_MIN_VERSION))
-
- # check max version
- if Version(Cython.__version__) > Version(CYTHON_MAX_VERSION):
- raise SystemExit('too new! Found %s (need at most %s)' % (
- Cython.__version__, CYTHON_MAX_VERSION))
-
- # check black-listed releases
- if Cython.__version__.startswith(CYTHON_BLACKLIST):
- raise SystemExit('found %s, its broken! Need another release' %
- Cython.__version__)
+ raise SystemExit('not found!')
sys.stdout.write('OK, found %s\n' % Cython.__version__)
MODULES_EXT = 'pyx'
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.