Skip to content

Commit 5d95918

Browse files
Revert "Require Cython<3 until source code is updated"
This reverts commit 03a46e1.
1 parent 338828b commit 5d95918

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/generate-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Install dpctl dependencies
8080
shell: bash -l {0}
8181
run: |
82-
pip install numpy cython"<3" setuptools pytest pytest-cov scikit-build cmake coverage[toml]
82+
pip install numpy cython setuptools pytest pytest-cov scikit-build cmake coverage[toml]
8383
8484
- name: Build dpctl with coverage
8585
shell: bash -l {0}

.github/workflows/generate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
if: ${{ !github.event.pull_request || github.event.action != 'closed' }}
5050
shell: bash -l {0}
5151
run: |
52-
pip install numpy cython"<3" setuptools scikit-build cmake sphinx sphinx_rtd_theme pydot graphviz sphinxcontrib-programoutput sphinxcontrib-googleanalytics
52+
pip install numpy cython setuptools scikit-build cmake sphinx sphinx_rtd_theme pydot graphviz sphinxcontrib-programoutput sphinxcontrib-googleanalytics
5353
- name: Checkout repo
5454
uses: actions/checkout@v3
5555
with:

.github/workflows/os-llvm-sycl-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- name: Install dpctl dependencies
109109
shell: bash -l {0}
110110
run: |
111-
pip install numpy cython"<3" setuptools pytest scikit-build cmake
111+
pip install numpy cython setuptools pytest scikit-build cmake
112112
113113
- name: Checkout repo
114114
uses: actions/checkout@v3

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requirements:
2020
- cmake >=3.21
2121
- ninja
2222
- git
23-
- cython <3
23+
- cython
2424
- python
2525
- scikit-build
2626
- numpy

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,20 +178,20 @@ def _get_cmdclass():
178178
package_data={"dpctl": ["tests/*.*", "tests/helper/*.py"]},
179179
include_package_data=True,
180180
zip_safe=False,
181-
setup_requires=["Cython<3"],
181+
setup_requires=["Cython"],
182182
install_requires=[
183183
"numpy",
184184
],
185185
extras_require={
186186
"docs": [
187-
"Cython<3",
187+
"Cython",
188188
"sphinx",
189189
"sphinx_rtd_theme",
190190
"pydot",
191191
"graphviz",
192192
"sphinxcontrib-programoutput",
193193
],
194-
"coverage": ["Cython<3", "pytest", "pytest-cov", "coverage", "tomli"],
194+
"coverage": ["Cython", "pytest", "pytest-cov", "coverage", "tomli"],
195195
},
196196
keywords="dpctl",
197197
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f],

0 commit comments

Comments
 (0)