Skip to content

Commit be5371a

Browse files
Add Python 3.14 and remove Python 3.9 (#37)
* Add Python 3.14 and remove Python 3.9 * Update pyo3 in gridwrold example
1 parent d6b8712 commit be5371a

File tree

5 files changed

+25
-29
lines changed

5 files changed

+25
-29
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
29+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-python@v5

examples/grid_world/Cargo.lock

Lines changed: 10 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/grid_world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ name = "grid_world"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
pyo3 = { version = "0.24", features = ["extension-module"] }
13+
pyo3 = { version = "0.27.2", features = ["extension-module"] }
1414
twisterl = { path = "../../rust", features = ["python_bindings"] }
1515
rand = "0.8"

rust/Cargo.lock

Lines changed: 12 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
python_bindings = ["pyo3"]
1010

1111
[dependencies]
12-
pyo3 = { version = "0.24.2", features = ["extension-module", "multiple-pymethods"], optional = true }
12+
pyo3 = { version = "0.27.2", features = ["extension-module", "multiple-pymethods"], optional = true }
1313
nalgebra = "0.33.0"
1414
rand = "0.8.4"
1515
rayon = "1.1.0"

0 commit comments

Comments
 (0)