Skip to content

Commit 510b78c

Browse files
authored
stop testing PyPy 3.9, add PyPy 3.11 (#513)
* stop testing PyPy 3.9, add PyPy 3.11 * bump pyo3 version in examples
1 parent 52bc8d7 commit 510b78c

File tree

9 files changed

+33
-33
lines changed

9 files changed

+33
-33
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fail-fast: ${{ !contains(github.event.pull_request.labels.*.name, 'CI-no-fail-fast') }}
6464
matrix:
6565
python-version:
66-
["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", pypy-3.9, pypy-3.10]
66+
["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t", pypy-3.10, pypy-3.11]
6767
platform:
6868
[
6969
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ version = "0.1.0"
6969
edition = "2021"
7070

7171
[dependencies]
72-
pyo3 = "0.22.0"
72+
pyo3 = "0.24"
7373

7474
[lib]
7575
name = "_lib" # private module to be nested into Python package,

examples/hello-world-setuppy/Cargo.lock

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

examples/hello-world-setuppy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
pyo3 = "0.23.4"
7+
pyo3 = "0.24.0"
88

99
[lib]
1010
# See https://github.com/PyO3/pyo3 for details

examples/hello-world/Cargo.lock

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

examples/hello-world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
pyo3 = "0.23.4"
9+
pyo3 = "0.24"
1010

1111
[profile.release-lto]
1212
inherits = "release"

examples/html-py-ever/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
kuchiki = "0.8.0"
9-
pyo3 = "0.23.4"
9+
pyo3 = "0.24"
1010
tendril = "0.4.3"
1111

1212
[lib]

examples/namespace_package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ path = "rust/lib.rs" # When omitted, the value of "src/lib.rs" is assumed
1818
# path = "src/lib.rs"
1919

2020
[dependencies]
21-
pyo3 = "0.23.4"
21+
pyo3 = "0.24"

examples/rust_with_cffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Alex Gaynor <alex.gaynor@gmail.com>"]
55
edition = "2021"
66

77
[dependencies]
8-
pyo3 = "0.23.4"
8+
pyo3 = "0.24"
99

1010
[lib]
1111
name = "rust_with_cffi"

0 commit comments

Comments
 (0)