Skip to content

Commit

Permalink
Bumped version to 3.5.4, updated dependency versions, dropped Python …
Browse files Browse the repository at this point in the history
…3.7 from wheel building CI
  • Loading branch information
sveinbjornt committed Aug 11, 2023
1 parent 8cf9657 commit df39b40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9", "pypy-3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
# Options (https://cibuildwheel.readthedocs.io/en/stable/options/)
env:
CIBW_SKIP: cp36-* *musllinux*
CIBW_SKIP: cp312-* cp36-* cp37-* pp37-* *musllinux*
CIBW_BEFORE_BUILD_MACOS: python3 -m pip install --upgrade setuptools wheel cffi
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_ARCHS_WINDOWS: "AMD64"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ def read(*names: str, **kwargs: Any) -> str:
setup_requires=["cffi>=1.15.1"],
install_requires=[
"cffi>=1.15.1",
"tokenizer>=3.4.2",
"islenska>=0.4.6",
"tokenizer>=3.4.3",
"islenska>=0.4.8",
"typing_extensions",
],
cffi_modules=["src/reynir/eparser_build.py:ffibuilder"],
Expand Down
2 changes: 1 addition & 1 deletion src/reynir/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.5.3"
__version__ = "3.5.4"

0 comments on commit df39b40

Please sign in to comment.