Skip to content

Commit 7e6eb81

Browse files
committed
Update pyo3 and bump versions.
1 parent 6de7bd7 commit 7e6eb81

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inline-python"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Inline Python code directly in your Rust code"
55
license = "BSD-2-Clause"
66
edition = "2018"
@@ -10,7 +10,7 @@ autoexamples = false
1010

1111
[dependencies]
1212
inline-python-macros = { version = "=0.13.0", path = "./macros" }
13-
pyo3 = { version = "0.23", default-features = false, features = ["auto-initialize"] }
13+
pyo3 = { version = "0.24", default-features = false, features = ["auto-initialize"] }
1414

1515
[workspace]
1616
members = ["examples", "ct-python"]

ct-python/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "ct-python"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
description = "Execute Python code at compile time to generate Rust code"
55
license = "BSD-2-Clause"
66
edition = "2018"
77
repository = "https://github.com/fusion-engineering/inline-python/tree/master/ct-python"
88
keywords = ["python", "macro", "generate", "compile-time"]
99

1010
[dependencies]
11-
inline-python-macros = { version = "=0.13.0", path = "../macros" }
11+
inline-python-macros = { version = "=0.14.0", path = "../macros" }

examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ path = "rust-fn.rs"
1717

1818
[dependencies]
1919
inline-python = { path = ".." }
20-
pyo3 = "0.23"
20+
pyo3 = "0.24"

macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inline-python-macros"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Macros for the inline-python crate"
55
license = "BSD-2-Clause"
66
edition = "2018"
@@ -12,7 +12,7 @@ proc_macro = true
1212
[dependencies]
1313
proc-macro2 = { version = "1.0", features = ["span-locations"] }
1414
quote = "1.0"
15-
pyo3 = { version = "0.23", default-features = false, features = ["auto-initialize"] }
15+
pyo3 = { version = "0.24", default-features = false, features = ["auto-initialize"] }
1616

1717
[target.'cfg(unix)'.dependencies]
1818
libc = "0.2.71"

0 commit comments

Comments
 (0)