Skip to content

Commit bbaf884

Browse files
committed
build(python): add support for Python 3.14 (#506)
1 parent a4d08b5 commit bbaf884

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of REANA.
2-
# Copyright (C) 2020, 2021, 2022, 2023, 2024 CERN.
2+
# Copyright (C) 2020, 2021, 2022, 2023, 2024, 2025 CERN.
33
#
44
# REANA is free software; you can redistribute it and/or modify it
55
# under the terms of the MIT License; see LICENSE file for more details.
@@ -143,7 +143,7 @@ jobs:
143143
runs-on: ubuntu-24.04
144144
strategy:
145145
matrix:
146-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
146+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
147147

148148
steps:
149149
- name: Checkout
@@ -153,6 +153,7 @@ jobs:
153153
uses: actions/setup-python@v5
154154
with:
155155
python-version: ${{ matrix.python-version }}
156+
allow-prereleases: true # Required for Python 3.14
156157

157158
- name: Install system dependencies
158159
run: |

.mise.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file is part of REANA.
2+
# Copyright (C) 2025 CERN.
3+
#
4+
# REANA is free software; you can redistribute it and/or modify it
5+
# under the terms of the MIT License; see LICENSE file for more details.
6+
7+
[tools]
8+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# This file is part of REANA.
2-
# Copyright (C) 2018, 2020, 2021, 2022, 2024 CERN.
2+
# Copyright (C) 2018, 2020, 2021, 2022, 2024, 2025 CERN.
33
#
44
# REANA is free software; you can redistribute it and/or modify it
55
# under the terms of the MIT License; see LICENSE file for more details.
66

77
include *.json
88
include *.md
99
include *.sh
10+
include *.toml
1011
include *.yaml
1112
include *.yml
1213
include .dockerignore

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"sphinx-rtd-theme>=0.1.9",
2626
],
2727
"tests": [
28-
"pytest-reana>=0.95.0a4,<0.96.0",
28+
"pytest-reana>=0.95.0a5,<0.96.0",
2929
],
3030
"kubernetes": [
3131
"kubernetes>=22.0.0,<23.0.0",
@@ -112,6 +112,7 @@
112112
"Programming Language :: Python :: 3.11",
113113
"Programming Language :: Python :: 3.12",
114114
"Programming Language :: Python :: 3.13",
115+
"Programming Language :: Python :: 3.14",
115116
"Programming Language :: Python :: Implementation :: CPython",
116117
"Programming Language :: Python",
117118
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of REANA.
2-
# Copyright (C) 2022, 2023, 2024 CERN.
2+
# Copyright (C) 2022, 2023, 2024, 2025 CERN.
33
#
44
# REANA is free software; you can redistribute it and/or modify it
55
# under the terms of the MIT License; see LICENSE file for more details.
@@ -12,6 +12,7 @@ envlist =
1212
py311
1313
py312
1414
py313
15+
py314
1516

1617
[testenv]
1718
deps =

0 commit comments

Comments
 (0)