Skip to content

Commit d8150be

Browse files
committed
Dependency Upgrades
1 parent 64d8add commit d8150be

File tree

4 files changed

+336
-7
lines changed

4 files changed

+336
-7
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ["3.9", "3.10", "3.11", "3.12"]
11+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212
env:
1313
PYTHON_VERSION: ${{matrix.python}}
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{matrix.python}}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{matrix.python}}
2020
- name: Install deps
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
pytest --cache-clear --cov=src/ --cov-report=xml --cov-report=html
2727
- name: Upload coverage to Codecov
28-
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
28+
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
2929
with:
3030
use_oidc: true
3131
files: ./coverage.xml

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
Version 1.0.5
6+
=============
7+
- Dependency upgrades
8+
- Python 3.13 is now supported
9+
510
Version 1.0.4
611
=============
712
- Switched from `html5` to `html5lib` as a dependency, since the former is unmaintained

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ classifiers = [
1818
]
1919
dependencies = [
2020
"html5lib>=1.1",
21-
"Markdown>=3.6",
22-
"pypdf>=4.3.1",
23-
"validators>=0.33.0",
21+
"Markdown>=3.8",
22+
"pypdf>=5.4.0",
23+
"validators>=0.34.0",
2424
]
2525

2626
[project.optional-dependencies]

0 commit comments

Comments
 (0)