Skip to content
Snippets Groups Projects
Unverified Commit 82719cdc authored by Thierry Moisan's avatar Thierry Moisan Committed by Joris Vaillant
Browse files

Support python 3.13

parent b550c1db
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu", "macos"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: "macos"
python-version: "3.8" # Not available on arm64
......
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -95,8 +95,8 @@ activation = { env = { COAL_HAS_QHULL = "ON" } }
[feature.octomap]
dependencies = { octomap = ">=1.10" }
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
python = "3.13.*"
[feature.py39.dependencies]
python = "3.9.*"
......@@ -117,24 +117,24 @@ activation = { scripts = ["development/scripts/pixi/activation_clang.sh"] }
dependencies = { clangxx = "*" }
[environments]
default = { features = ["py312"], solve-group = "py312" }
clang = { features = ["clang", "py312"] }
lint = { features = ["lint"], solve-group = "py312" }
qhull = { features = ["qhull", "py312"], solve-group = "py312" }
octomap = { features = ["octomap", "py312"], solve-group = "py312" }
default = { features = ["py313"], solve-group = "py313" }
clang = { features = ["clang", "py313"] }
lint = { features = ["lint"], solve-group = "py313" }
qhull = { features = ["qhull", "py313"], solve-group = "py313" }
octomap = { features = ["octomap", "py313"], solve-group = "py313" }
py39 = { features = ["py39"], solve-group = "py39" }
all = { features = ["qhull", "octomap", "py312"], solve-group = "py312" }
all = { features = ["qhull", "octomap", "py313"], solve-group = "py313" }
all-py39 = { features = ["qhull", "octomap", "py39"], solve-group = "py39" }
all-clang-cl = { features = [
"qhull",
"octomap",
"clang-cl",
"py312",
], solve-group = "py312" }
"py313",
], solve-group = "py313" }
# Release a new software version
new-version = { features = [
"new-version",
"qhull",
"octomap",
"py312",
], solve-group = "py312" }
"py313",
], solve-group = "py313" }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment