Skip to content

Commit

Permalink
Merge branch 'rl-0.15.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
amenezes committed Oct 25, 2024
2 parents 4fdd4e3 + 9e03099 commit 06ec5e3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
11 changes: 6 additions & 5 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 Expand Up @@ -40,8 +41,8 @@ jobs:
run: |
sudo apt-get install -y tesseract-ocr tesseract-ocr-por
make ci SKIP_STYLE=true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: true
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1
# with:
# file: ./coverage.xml
# fail_ci_if_error: true
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
4 changes: 2 additions & 2 deletions 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 All @@ -50,7 +50,7 @@ about:
ci: lint tests
ifeq ($(GITHUB_HEAD_REF), false)
@echo "> uploading report..."
codecov --file coverage.xml -t $$CODECOV_TOKEN
# codecov --file coverage.xml -t $$CODECOV_TOKEN
endif

all: install-deps ci
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 06ec5e3

Please sign in to comment.