Skip to content

Commit

Permalink
uses latest Cython pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobatymo committed Jan 17, 2022
1 parent 42a8c47 commit 87f6708
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install setuptools Cython@git+https://github.com/cython/cython.git@c25c87d71107e634162302f7f61a119eff539a48 numpy
python -m pip install -r requirements-build.txt
python -m pip install -r requirements-test.txt
- name: Build
run: |
Expand All @@ -63,7 +63,8 @@ jobs:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install setuptools wheel Cython@git+https://github.com/cython/cython.git@c25c87d71107e634162302f7f61a119eff539a48 cibuildwheel==2.3.1
python -m pip install -r requirements-build.txt
python -m pip install cibuildwheel==2.3.1
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -88,7 +89,7 @@ jobs:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install setuptools Cython@git+https://github.com/cython/cython.git@c25c87d71107e634162302f7f61a119eff539a48 numpy
python -m pip install -r requirements-build.txt
- name: Build dists
run: |
python setup.py sdist
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "Cython@git+https://github.com/cython/cython.git@c25c87d71107e634162302f7f61a119eff539a48", "numpy"]
requires = ["setuptools", "wheel", "Cython==3.0.0a10", "numpy"]

[tool.black]
line-length = 120
Expand Down
3 changes: 3 additions & 0 deletions requirements-build.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
setuptools
Cython==3.0.0a10
numpy

0 comments on commit 87f6708

Please sign in to comment.