Skip to content

Commit a76c09b

Browse files
committed
roll python
1 parent 543a4bf commit a76c09b

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

.github/workflows/python-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1414
os: [ubuntu-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616

.github/workflows/run-entry-points.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1414
os: [ubuntu-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616

yaqc/pyproject.toml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ description="Generic yaq client."
1313
readme="README.md"
1414
classifiers=[
1515
"Development Status :: 5 - Production/Stable",
16-
"Intended Audience :: Science/Research",
17-
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
18-
"Natural Language :: English",
19-
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
21-
"Programming Language :: Python :: 3.9",
22-
"Programming Language :: Python :: 3.10",
23-
"Programming Language :: Python :: 3.11",
24-
"Topic :: Scientific/Engineering",
16+
"Intended Audience :: Science/Research",
17+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
18+
"Natural Language :: English",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.9",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
26+
"Topic :: Scientific/Engineering",
2527
]
2628

2729
[project.urls]
@@ -39,7 +41,7 @@ path = "yaqc/__version__.py"
3941

4042
[tool.black]
4143
line-length = 99
42-
target-version = ['py36', 'py37', 'py38']
44+
target-version = ['py311', "py312"]
4345
include = '\.pyi?$'
4446
exclude = '''
4547
/(

yaqd-core/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ classifiers=[
1616
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
1717
"Natural Language :: English",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
"Topic :: Scientific/Engineering",
2526
]
2627

yaqd-fakes/pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ classifiers=[
1616
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
1717
"Natural Language :: English",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2325
"Topic :: Scientific/Engineering",
2426
]
2527

@@ -47,7 +49,7 @@ path="yaqd_fakes/__version__.py"
4749

4850
[tool.black]
4951
line-length = 99
50-
target-version = ['py37', 'py38']
52+
target-version = ['py311', "py312"]
5153
include = '\.pyi?$'
5254
exclude = '''
5355
/(

0 commit comments

Comments
 (0)