Skip to content

Commit

Permalink
Update supported Python versions to 3.9–3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Dec 16, 2024
1 parent b26d952 commit b8c9330
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: "Install dependencies"
run: |
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

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

steps:
- name: "Checkout sources"
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Changed

- Update supported Python versions to 3.9–3.12

## [3.1.0] - 2024-10-28

### Added
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ maintainers = [
{name = "Stéphane Caron", email = "[email protected]"},
]
dynamic = ['version', 'description']
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework :: Library",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
isolated_build = True
envlist = py{38, 39, 310}
envlist = py{39,310,311,312}

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
deps =
Expand Down

0 comments on commit b8c9330

Please sign in to comment.