Skip to content

Commit

Permalink
feat: Support to Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Oct 25, 2024
1 parent 4fdd4e3 commit 0506d7b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
'3.10',
'3.11',
'3.12',
'3.13',
'pypy-3.8',
'pypy-3.9',
'pypy-3.10'
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python 3.12.1
python 3.13.0t
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docs:

install-deps:
@echo "> installing dependencies..."
pip install -r requirements-dev.txt
uv pip install -r requirements-dev.txt
pre-commit install

tox:
Expand Down
2 changes: 1 addition & 1 deletion aiopytesseract/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
from .models import OSD, Box, Data, Parameter

__version__ = "0.14.0"
__version__ = "0.15.0"
__all__ = [
"__version__",
"OSD",
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Expand Down Expand Up @@ -90,9 +91,6 @@ disallow_subclassing_any = True
disallow_untyped_decorators = True
disallow_any_generics = True

[tox:tox]
envlist = py{38,39,310,311,312},pypy{3.8,3.9,3.10}

[testenv]
deps = -rrequirements-dev.txt
whitelist_externals = make
Expand Down

0 comments on commit 0506d7b

Please sign in to comment.