Skip to content

Commit df39b40

Browse files
committed
Bumped version to 3.5.4, updated dependency versions, dropped Python 3.7 from wheel building CI
1 parent 8cf9657 commit df39b40

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9", "pypy-3.10"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: python -m cibuildwheel --output-dir wheelhouse
3232
# Options (https://cibuildwheel.readthedocs.io/en/stable/options/)
3333
env:
34-
CIBW_SKIP: cp36-* *musllinux*
34+
CIBW_SKIP: cp312-* cp36-* cp37-* pp37-* *musllinux*
3535
CIBW_BEFORE_BUILD_MACOS: python3 -m pip install --upgrade setuptools wheel cffi
3636
CIBW_ARCHS_MACOS: "x86_64 arm64"
3737
CIBW_ARCHS_WINDOWS: "AMD64"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ def read(*names: str, **kwargs: Any) -> str:
118118
setup_requires=["cffi>=1.15.1"],
119119
install_requires=[
120120
"cffi>=1.15.1",
121-
"tokenizer>=3.4.2",
122-
"islenska>=0.4.6",
121+
"tokenizer>=3.4.3",
122+
"islenska>=0.4.8",
123123
"typing_extensions",
124124
],
125125
cffi_modules=["src/reynir/eparser_build.py:ffibuilder"],

src/reynir/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.5.3"
1+
__version__ = "3.5.4"

0 commit comments

Comments
 (0)