Skip to content

Commit

Permalink
Skip configuring interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
gi0baro committed Oct 25, 2023
1 parent 4ca9d5d commit d9b27a9
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 14 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

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

6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geohashr"
version = "1.3.0"
version = "1.3.1"
description = "Just another geohashing library"
authors = [
"Giovanni Barillari <[email protected]>",
Expand All @@ -18,7 +18,6 @@ repository = "https://github.com/gi0baro/geohashr"
include = [
"/Cargo.toml",
"/pyproject.toml",
"/build.rs",
"/LICENSE",
"/README.md",
"/src",
Expand All @@ -38,9 +37,6 @@ geohash = { version = "=0.13" }
pyo3 = { version = "=0.20", features = ["extension-module", "generate-import-lib"] }
lazy_static = "1.4.0"

[build-dependencies]
pyo3-build-config = { version = "=0.20", features = ["resolve-config"] }

[profile.release]
codegen-units = 1
debug = false
Expand Down
3 changes: 0 additions & 3 deletions build.rs

This file was deleted.

2 changes: 1 addition & 1 deletion geohashr/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.3.1"
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,5 @@ fn _geohashr(py: Python, module: &PyModule) -> PyResult<()> {
module.add("EncodeError", py.get_type::<EncodeError>())?;
module.add("ParamError", py.get_type::<ParamError>())?;

#[cfg(not(PyPy))]
pyo3::prepare_freethreaded_python();

Ok(())
}

0 comments on commit d9b27a9

Please sign in to comment.