Skip to content

Commit b0f1bef

Browse files
authored
dependency upgrades (#186)
* dependency upgrades * add python 3.13 tests/support
1 parent 61a9e13 commit b0f1bef

7 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8+
groups:
9+
production-dependencies:
10+
dependency-type: "production"
11+
development-dependencies:
12+
dependency-type: "development"
813

914
# Maintain dependencies for GitHub Actions
1015
- package-ecosystem: "github-actions"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- uses: wntrblm/nox@2025.02.09
2727
with:
28-
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12"
28+
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, 3.13"
2929
- name: Test with NOX
3030
run: |
3131
nox --session tests

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The pythonbible library serves several purposes related to the Christian Bible a
3333
</tr>
3434
<tr>
3535
<td>Supported Python Versions</td>
36-
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue?logo=python&logoColor=lightgray"></a></td>
36+
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue?logo=python&logoColor=lightgray"></a></td>
3737
</tr>
3838
</table>
3939

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
COVERAGE = "coverage"
77

88

9-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
9+
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
1010
def tests(session: nox.Session) -> None:
1111
session.install(PYTEST)
1212
session.run(PYTEST)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
2526
"License :: OSI Approved :: MIT License"
2627
]
2728
requires = []

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pre-commit
1+
pre-commit==4.2.0

requirements-test.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
nox
2-
pytest
3-
pytest-cov
1+
nox==2025.2.9
2+
pytest-cov==6.1.0

0 commit comments

Comments
 (0)