Skip to content

Commit

Permalink
Require Cython ≥ 0.28.
Browse files Browse the repository at this point in the history
Needed for extern docstring syntax.

References: commit afeb42a
  • Loading branch information
jwilk committed Jun 22, 2023
1 parent afeb42a commit 9a3c6d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
matrix:
include:
- python: '2.7'
cython: cython==0.24
cython: cython==0.28
- python: '2.7'
- python: '3.5'
os: ubuntu-20.04
cython: cython==0.24
cython: cython==0.28
- python: '3.6'
os: ubuntu-20.04
- python: '3.7'
Expand Down
2 changes: 1 addition & 1 deletion doc/README
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Prerequisites
To build the module, you will need:

* Python 2.6+ or 3.2+
* Cython ≥ 0.24 (only at build time)
* Cython ≥ 0.28 (only at build time)

*py-afl-fuzz* requires AFL proper to be installed.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
'setuptools', 'wheel', # needed only to make pip happy
'Cython>=0.24',
'Cython>=0.28',
]

# vim:ts=4 sts=4 sw=4 et
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_version():
if os.name != 'posix':
raise RuntimeError('non-POSIX systems are not supported')

min_cython_version = '0.24'
min_cython_version = '0.28'
try:
import Cython
except ImportError:
Expand Down

0 comments on commit 9a3c6d2

Please sign in to comment.