fix(cargo): remove path for the libpt version used in libpt-py
cargo devel CI / cargo CI (push) Successful in 1m51s Details

otherwise, libpt-py always uses the latest libpt version by path that is
in the workspace, which is bad if the libpt version is ahead of the
libpt-py version.
This commit is contained in:
Christoph J. Scherr 2024-06-27 21:20:07 +02:00
parent 101e20da43
commit 940b5ffa1a
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ name = "libpt"
crate-type = ["cdylib", "rlib"]
[dependencies]
libpt = { version = "0.5.0", path = "../.." }
libpt = { version = "0.5.0"}
pyo3 = { version = "0.19.0", features = ["full"] }
anyhow.workspace = true