Skip to content

Commit 98aa9c4

Browse files
committed
Run tests with Python 3.14
1 parent 73dadf2 commit 98aa9c4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/test_with_tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
10+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1111

1212
steps:
1313
- uses: actions/checkout@v5
@@ -21,5 +21,5 @@ jobs:
2121

2222
- run: tox -e py
2323

24-
- if: matrix.python == 3.13
24+
- if: matrix.python == 3.14
2525
run: TOXENV=ruff,manifest,docs,spell tox

docs/changelog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<meta name="generator" content="Docutils 0.22: https://docutils.sourceforge.io/" />
5+
<meta name="generator" content="Docutils 0.22.3: https://docutils.sourceforge.io/" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<title>Changelog for DBUtils</title>
88
<link rel="stylesheet" href="doc.css" type="text/css" />

docs/main.de.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
33
<head>
44
<meta charset="utf-8" />
5-
<meta name="generator" content="Docutils 0.22: https://docutils.sourceforge.io/" />
5+
<meta name="generator" content="Docutils 0.22.3: https://docutils.sourceforge.io/" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<title>Benutzeranleitung für DBUtils</title>
88
<link rel="stylesheet" href="doc.css" type="text/css" />

docs/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<meta name="generator" content="Docutils 0.22: https://docutils.sourceforge.io/" />
5+
<meta name="generator" content="Docutils 0.22.3: https://docutils.sourceforge.io/" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<title>DBUtils User's Guide</title>
88
<link rel="stylesheet" href="doc.css" type="text/css" />

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{9,10,11,12,13,14rc2}, ruff, manifest, docs, spell
2+
envlist = py3{9,10,11,12,13,14}, ruff, manifest, docs, spell
33

44
[testenv:py37]
55
skip_install = true
@@ -18,12 +18,12 @@ extras = tests
1818
commands = pytest {posargs}
1919

2020
[testenv:spell]
21-
basepython = python3.13
21+
basepython = python3.14
2222
deps = codespell
2323
commands = codespell .
2424

2525
[testenv:ruff]
26-
basepython = python3.13
26+
basepython = python3.14
2727
deps = ruff
2828
commands = ruff check .
2929

@@ -33,7 +33,7 @@ deps = check-manifest
3333
commands = check-manifest -v
3434

3535
[testenv:docs]
36-
basepython = python3.13
36+
basepython = python3.14
3737
extras = docs
3838
changedir = docs
3939
commands = python make.py

0 commit comments

Comments
 (0)