Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit dacd936

Browse files
authored
Merge branch 'main' into upd-test-url
2 parents 3e80b61 + 7b03eac commit dacd936

File tree

5 files changed

+119
-60
lines changed

5 files changed

+119
-60
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,6 @@ jobs:
166166
nox --session=coverage -- xml -i
167167
168168
- name: Upload coverage report
169-
uses: codecov/codecov-action@v3.1.4
169+
uses: codecov/codecov-action@v4
170+
env:
171+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

camelot/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 11, 0)
1+
VERSION = (0, 0, 1)
22
PRERELEASE = None # alpha, beta or rc
33
REVISION = None
44

@@ -12,7 +12,7 @@ def generate_version(version, prerelease=None, revision=None):
1212
return "".join(version_parts)
1313

1414

15-
__title__ = "camelot-py"
15+
__title__ = "pypdf_table_extraction"
1616
__description__ = "PDF Table Extraction for Humans."
1717
__url__ = "https://pypdf-table-extraction.readthedocs.io/"
1818
__version__ = generate_version(VERSION, prerelease=PRERELEASE, revision=REVISION)

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def tests(session: Session) -> None:
168168
session.install(".")
169169

170170
session.install(
171-
"coverage[toml]", "pytest", "pygments", *base_requires, *plot_requires
171+
"coverage[toml]", "pytest", "pytest-mpl", "pygments", *base_requires, *plot_requires
172172
)
173173
try:
174174
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)

0 commit comments

Comments
 (0)