Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pyo3 #56

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 40 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "tzfpy"
version = "0.15.4"
version = "0.15.5"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -19,7 +19,7 @@ crate-type = ["cdylib"]

[dependencies]
lazy_static = "1.4.0"
pyo3 = {version = "0.20.3", features = ["extension-module"]}
pyo3 = {version = "0.21.0", features = ["extension-module"]}

# tzf-rs = { git = "https://github.com/ringsaturn/tzf-rs", rev = "06a1bbf", default-features = false}
tzf-rs = { version = "0.4.6", default-features = false }
tzf-rs = { version = "0.4.7", default-features = false }
6 changes: 3 additions & 3 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
citiespy==0.5.4
maturin==1.4.0
citiespy==0.5.5
maturin==1.5.1
pytest
pytest-benchmark
pytest-cov
pytest-pretty
pytest-pretty
pytz==2024.1
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub fn data_version(_py: Python) -> PyResult<String> {
}

#[pymodule]
fn tzfpy(_py: Python, m: &PyModule) -> PyResult<()> {
fn tzfpy(_py: Python, m: &Bound<'_, PyModule>) -> PyResult<()> {
m.add_function(wrap_pyfunction!(get_tz, m)?)?;
m.add_function(wrap_pyfunction!(get_tzs, m)?)?;
m.add_function(wrap_pyfunction!(timezonenames, m)?)?;
Expand Down