Skip to content

Commit 1423ef0

Browse files
DEV: add note to update cython version in environment.yml and asv conf as well (#44463)
1 parent a07561e commit 1423ef0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
requires = [
55
"setuptools>=51.0.0",
66
"wheel",
7-
"Cython>=0.29.24,<3", # Note: sync with setup.py
7+
"Cython>=0.29.24,<3", # Note: sync with setup.py, environment.yml and asv.conf.json
88
"oldest-supported-numpy>=0.10"
99
]
1010
# uncomment to enable pep517 after versioneer problem is fixed.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def is_platform_mac():
3737
return sys.platform == "darwin"
3838

3939

40-
min_cython_ver = "0.29.24" # note: sync with pyproject.toml
40+
# note: sync with pyproject.toml, environment.yml and asv.conf.json
41+
min_cython_ver = "0.29.24"
4142

4243
try:
4344
from Cython import (

0 commit comments

Comments
 (0)