Skip to content

Commit b1338d8

Browse files
committed
chore(ci): test python 3.14
1 parent 2031724 commit b1338d8

File tree

8 files changed

+10
-3
lines changed

8 files changed

+10
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Set up Python
8383
uses: actions/setup-python@v5
8484
with:
85-
python-version: "3.13"
85+
python-version: "3.14"
8686

8787
- name: Install linting packages
8888
run: pip install -r ./requirements/linting.txt
@@ -97,7 +97,7 @@ jobs:
9797
if: ${{ needs.pytest-changes.outputs.changed == 'true' }}
9898
strategy:
9999
matrix:
100-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
100+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
101101
pytest-version: ["7.*", "8.*"]
102102
env:
103103
TEST_TMP: /tmp
@@ -131,7 +131,7 @@ jobs:
131131
strategy:
132132
matrix:
133133
package: ${{ fromJSON(needs.other-changes.outputs.packages) }}
134-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
134+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
135135
exclude:
136136
- package: allure-pytest
137137
env:

allure-behave/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'Programming Language :: Python :: 3.11',
1919
'Programming Language :: Python :: 3.12',
2020
'Programming Language :: Python :: 3.13',
21+
'Programming Language :: Python :: 3.14',
2122
]
2223

2324
setup_requires = [

allure-nose2/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.11',
1818
'Programming Language :: Python :: 3.12',
1919
'Programming Language :: Python :: 3.13',
20+
'Programming Language :: Python :: 3.14',
2021
]
2122

2223
setup_requires = [

allure-pytest-bdd/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Programming Language :: Python :: 3.11',
2020
'Programming Language :: Python :: 3.12',
2121
'Programming Language :: Python :: 3.13',
22+
'Programming Language :: Python :: 3.14',
2223
]
2324

2425
setup_requires = [

allure-pytest/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
'Programming Language :: Python :: 3.11',
3131
'Programming Language :: Python :: 3.12',
3232
'Programming Language :: Python :: 3.13',
33+
'Programming Language :: Python :: 3.14',
3334
]
3435

3536
setup_requires = [

allure-python-commons-test/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'Programming Language :: Python :: 3.11',
1818
'Programming Language :: Python :: 3.12',
1919
'Programming Language :: Python :: 3.13',
20+
'Programming Language :: Python :: 3.14',
2021
]
2122

2223
install_requires = [

allure-python-commons/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"Programming Language :: Python :: 3.11",
1818
"Programming Language :: Python :: 3.12",
1919
"Programming Language :: Python :: 3.13",
20+
"Programming Language :: Python :: 3.14",
2021
]
2122

2223
install_requires = [

allure-robotframework/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Programming Language :: Python :: 3.11',
2020
'Programming Language :: Python :: 3.12',
2121
'Programming Language :: Python :: 3.13',
22+
'Programming Language :: Python :: 3.14',
2223
]
2324

2425
setup_requires = [

0 commit comments

Comments
 (0)