Skip to content

Commit 8f85207

Browse files
committed
Revert "fix(tests): pin python<3.0"
This reverts commit 2acb4ae.
1 parent 7149b86 commit 8f85207

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install dependencies
4040
run: |
4141
conda info
42-
conda install -c conda-forge numpy 'cython<3.0' h5py
42+
conda install -c conda-forge numpy cython h5py
4343
python -m pip install --upgrade pip setuptools wheel
4444
python -m pip install https://github.com/pypr/cyarray/zipball/master
4545
python -m pip install https://github.com/pypr/compyle/zipball/master

.github/workflows/zoltan-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install dependencies
4141
run: |
4242
conda info
43-
conda install -c conda-forge numpy 'cython<3.0'
43+
conda install -c conda-forge numpy cython
4444
python -m pip install --upgrade pip setuptools wheel
4545
python -m pip install mpi4py
4646
python -m pip install https://github.com/pypr/cyarray/zipball/master

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"Beaker",
4-
"Cython<3.0",
4+
"Cython>=0.20",
55
"compyle>=0.8",
66
"cyarray",
77
"mako",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy
22
setuptools>=42.0.0
3-
Cython<3.0
3+
Cython>=0.20
44
cyarray
55
compyle>=0.8
66
mako

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ def setup_package():
681681

682682
# The requirements.
683683
install_requires = [
684-
'numpy', 'mako', 'cyarray', 'compyle>=0.8', 'Cython<3.0',
684+
'numpy', 'mako', 'cyarray', 'compyle>=0.8', 'Cython>=0.20',
685685
'setuptools>=42.0.0', 'pytools', 'Beaker'
686686
]
687687
tests_require = ['pytest>=3.0', 'h5py', 'vtk']

0 commit comments

Comments
 (0)