Skip to content

Commit 48f5c82

Browse files
authored
chore: support up to Python 3.12 (#9)
1 parent cd1c01f commit 48f5c82

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include = [
1414
name = "dm-robotics-panda"
1515
description = "Panda model for dm_robotics."
1616
version = "0.4.7"
17-
requires-python = ">=3.8,<3.11"
17+
requires-python = ">=3.8,<3.13"
1818
authors = [
1919
{ name = "Jean Elsner", email = "jean.elsner@tum.de" },
2020
]
@@ -40,6 +40,8 @@ classifiers = [
4040
"Programming Language :: Python :: 3.8",
4141
"Programming Language :: Python :: 3.9",
4242
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
44+
"Programming Language :: Python :: 3.12",
4345
]
4446

4547
[project.optional-dependencies]

0 commit comments

Comments
 (0)