Skip to content

Commit

Permalink
Enforce recent version of Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Mar 7, 2023
1 parent 7a2db3a commit 41c508a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ci/requirements_gh.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ wheel
numpy <1.19 ; python_version <= '3.5'
numpy <1.20 ; python_version <= '3.6'
numpy; python_version> '3.6'
cython
cython >=0.29.31
pillow
lxml
unittest2
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements_rtd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ h5py
fabio
sphinx
scipy
cython
cython >=0.29.31
pygments[plugins]
sphinxcontrib-programoutput
silx
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements_travis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
wheel
numpy <1.19 ; python_version <= '3.5'
numpy; python_version>= '3.6'
cython
cython (>=0.29.31)
pillow
lxml
unittest2
Expand Down
4 changes: 2 additions & 2 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:Author: Jérôme Kieffer
:Date: 03/03/2023
:Date: 07/03/2023
:Keywords: changelog

Change-log of versions
Expand All @@ -8,7 +8,7 @@ Change-log of versions
2023.XX
-------
- Support all version of python between 3.7 and 3.11
- Support Cython 3.0b1 (with performance degradation) in addition of cython 0.29
- Support Cython 3.0b1 (with performance degradation) in addition of cython 0.29.31+

2023.02 27/02/2023
------------------
Expand Down
2 changes: 1 addition & 1 deletion package/debian10/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Uploaders: Jerome Kieffer <[email protected]>,
Picca Frédéric-Emmanuel <[email protected]>
Section: science
Priority: extra
Build-Depends: cython3,
Build-Depends: cython3 (>=0.29.31),
cython3-dbg,
debhelper,
dh-python,
Expand Down
2 changes: 1 addition & 1 deletion package/debian11/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Uploaders: Jerome Kieffer <[email protected]>,
Picca Frédéric-Emmanuel <[email protected]>
Section: science
Priority: extra
Build-Depends: cython3,
Build-Depends: cython3 (>=0.29.31),
cython3-dbg,
debhelper,
dh-python,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ requires = [
'ninja',
'wheel',
'numpy',
'Cython>=0.25',
'Cython>=0.29.31',
'numpy',
'pyproject-metadata>=0.5.0',
'tomli>=1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ wheel
meson-python
ninja
numpy
cython
cython >=0.29.31
fabio
scipy
matplotlib
Expand Down

0 comments on commit 41c508a

Please sign in to comment.