Skip to content

Commit 4d408bd

Browse files
Update supported Python versions to 3.9–3.12
1 parent 5286252 commit 4d408bd

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: "Set up Python"
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.8"
24+
python-version: "3.9"
2525

2626
- name: "Install dependencies"
2727
run: |
@@ -50,7 +50,7 @@ jobs:
5050
- name: "Set up Python"
5151
uses: actions/setup-python@v4
5252
with:
53-
python-version: "3.8"
53+
python-version: "3.9"
5454

5555
- name: "Install dependencies"
5656
run: |
@@ -71,7 +71,7 @@ jobs:
7171
os: [ubuntu-latest]
7272
# Blocker: https://github.com/stack-of-tasks/pinocchio/issues/2231
7373
# os: [ubuntu-latest, macos-latest]
74-
python-version: ["3.8", "3.9", "3.10"]
74+
python-version: ["3.9", "3.10", "3.11", "3.12"]
7575

7676
steps:
7777
- name: "Checkout sources"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### Changed
11+
12+
- Update supported Python versions to 3.9–3.12
13+
1014
## [3.1.0] - 2024-10-28
1115

1216
### Added

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@ maintainers = [
1212
{name = "Stéphane Caron", email = "stephane.caron@normalesup.org"},
1313
]
1414
dynamic = ['version', 'description']
15-
requires-python = ">=3.8"
15+
requires-python = ">=3.9"
1616
classifiers = [
1717
"Development Status :: 5 - Production/Stable",
1818
"Framework :: Robot Framework :: Library",
1919
"Intended Audience :: Developers",
2020
"Intended Audience :: Science/Research",
2121
"License :: OSI Approved :: Apache Software License",
22-
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
2526
"Topic :: Scientific/Engineering",
2627
]
2728
dependencies = [

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
22
isolated_build = True
3-
envlist = py{38, 39, 310}
3+
envlist = py{39,310,311,312}
44

55
[gh-actions]
66
python =
7-
3.8: py38
87
3.9: py39
98
3.10: py310
9+
3.11: py311
10+
3.12: py312
1011

1112
[testenv]
1213
deps =

0 commit comments

Comments
 (0)