Skip to content

Commit b2f282a

Browse files
committed
Tested with Python 3.14
1 parent e62bd4c commit b2f282a

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1414
exclude:
1515
- os: windows-latest
1616
python-version: "2.7"

docs-ru/news.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Version 0.4.2 (2024-??-??)
66

77
* CI(GHActions): Переключиться на ``setup-miniconda``.
88

9-
* Tests, CI(GHActions): Python 3.13.
9+
* Tests, CI(GHActions): Python 3.13, 3.14.
1010

1111
Версия 0.4.1 (2024-07-18)
1212
-------------------------

docs/news.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Version 0.4.2 (2024-??-??)
66

77
* CI(GHActions): Switch to ``setup-miniconda``.
88

9-
* Tests, CI(GHActions): Python 3.13.
9+
* Tests, CI(GHActions): Python 3.13, 3.14.
1010

1111
Version 0.4.1 (2024-07-18)
1212
--------------------------

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
'Programming Language :: Python :: 3.11',
6464
'Programming Language :: Python :: 3.12',
6565
'Programming Language :: Python :: 3.13',
66+
'Programming Language :: Python :: 3.14',
6667
],
6768
packages=['m_librarian', 'm_librarian.web'],
6869
package_data={'m_librarian': [

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.15
3-
envlist = py{27,34,35,36,37,38,39,310,311,312,313}-sqlite,py{27,37,312}-flake8
3+
envlist = py{27,34,35,36,37,38,39,310,311,312,313,314}-sqlite,py{27,37,312}-flake8
44

55
# Base test environment settings
66
[testenv]
@@ -13,13 +13,13 @@ deps =
1313
passenv = CI DISTUTILS_USE_SDK MSSdk INCLUDE LIB WINDIR
1414
platform = linux|darwin
1515

16-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-sqlite]
16+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-sqlite]
1717
commands =
1818
{[testenv]commands}
1919
-rm.py -f /tmp/test.sqdb
2020
{envpython} -m pytest -D sqlite:///tmp/test.sqdb
2121

22-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-sqlite-w32]
22+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-sqlite-w32]
2323
platform = win32
2424
commands =
2525
{[testenv]commands}
@@ -28,10 +28,10 @@ commands =
2828
rm.py -f {env:TEMP}/test.sqdb
2929

3030
# flake8
31-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-flake8]
31+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-flake8]
3232
deps =
3333
flake8
34-
pytest < 7.0
34+
pytest
3535
commands =
3636
{[testenv]commands}
3737
flake8

0 commit comments

Comments
 (0)