Skip to content

Commit 00458a9

Browse files
committed
Tested with Python 3.14
1 parent e62bd4c commit 00458a9

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-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: 7 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,314}-flake8
44

55
# Base test environment settings
66
[testenv]
@@ -10,16 +10,18 @@ commands =
1010
{envpython} -m pytest --version
1111
deps =
1212
-rdevscripts/requirements/requirements_tests.txt
13+
# Upgrade pip/setuptools/wheel
14+
download = true
1315
passenv = CI DISTUTILS_USE_SDK MSSdk INCLUDE LIB WINDIR
1416
platform = linux|darwin
1517

16-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-sqlite]
18+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-sqlite]
1719
commands =
1820
{[testenv]commands}
1921
-rm.py -f /tmp/test.sqdb
2022
{envpython} -m pytest -D sqlite:///tmp/test.sqdb
2123

22-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-sqlite-w32]
24+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-sqlite-w32]
2325
platform = win32
2426
commands =
2527
{[testenv]commands}
@@ -28,10 +30,10 @@ commands =
2830
rm.py -f {env:TEMP}/test.sqdb
2931

3032
# flake8
31-
[testenv:py{27,34,35,36,37,38,39,310,311,312,313}-flake8]
33+
[testenv:py{27,34,35,36,37,38,39,310,311,312,313,314}-flake8]
3234
deps =
3335
flake8
34-
pytest < 7.0
36+
pytest
3537
commands =
3638
{[testenv]commands}
3739
flake8

0 commit comments

Comments
 (0)