Skip to content

Commit

Permalink
upgrade cython
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Oct 8, 2023
1 parent 67a0933 commit f0dbacf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branchbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy rapidfuzz_capi Cython==3.0.2
pip install numpy rapidfuzz_capi Cython==3.0.3
- name: Generate cython
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas mypy rapidfuzz_capi Cython==3.0.2
pip install pytest hypothesis pandas mypy rapidfuzz_capi Cython==3.0.3
# The cythonized files allow installation from the sdist without cython
- name: Generate cython
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Changelog
^^^^^^^^^^^^^^^^^^^^
Changed
~~~~~~~
- upgrade to ``Cython==3.0.3``
- add simd implementation for Jaro and Jaro Winkler

[3.3.1] - 2023-09-25
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools>=42",
"scikit-build~=0.17.0",
"Cython==3.0.2"
"Cython==3.0.3"
]
build-backend = "backend"
backend-path = ["_custom_build"]
Expand Down
2 changes: 1 addition & 1 deletion tools/sdist.patch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ index 77671b1..7692f90 100644
requires = [
"setuptools>=42",
- "scikit-build~=0.17.0",
- "Cython==3.0.2"
- "Cython==3.0.3"
+ "scikit-build~=0.17.0"
]
build-backend = "backend"
Expand Down

0 comments on commit f0dbacf

Please sign in to comment.