mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 00:01:52 -04:00
The port builds fine with cython 3.x (upcoming cython-devel), which is currently the only option with (upcoming) python 3.11. Remove the needless version limitation which breaks the build. PR: 259899 Approved by: dbaio (maintainer)
11 lines
407 B
Python
11 lines
407 B
Python
--- setup.py.orig 2020-07-15 11:49:38 UTC
|
|
+++ setup.py
|
|
@@ -187,7 +187,7 @@ setup(name='PyStemmer',
|
|
"Topic :: Text Processing :: Indexing",
|
|
"Topic :: Text Processing :: Linguistic",
|
|
],
|
|
- setup_requires=['Cython>=0.28.5,<1.0', 'setuptools>=18.0'],
|
|
+ setup_requires=['Cython>=0.28.5', 'setuptools>=18.0'],
|
|
ext_modules=[
|
|
Extension(
|
|
'Stemmer',
|