Compare commits

..

No commits in common. "5a1550829e86b133e2c589b98e2260dec174a8c5" and "d58207cb5dc29a0a2188686877b014bc6f66a508" have entirely different histories.

5 changed files with 8 additions and 18 deletions

View file

@ -38,9 +38,7 @@ jobs:
- name: cargo fmt - name: cargo fmt
run: cargo fmt --all run: cargo fmt --all
- name: install python - name: install python
uses: actions/setup-python@v5 run: apt update && apt install libpython3-dev -y
with:
python-version: '3.11'
- name: cargo test - name: cargo test
run: cargo test --all-features --all-targets --workspace run: cargo test --all-features --all-targets --workspace
- name: commit back to repository - name: commit back to repository

View file

@ -10,7 +10,7 @@ default-members = [".", "members/libpt-core"]
[workspace.package] [workspace.package]
publish = true publish = true
version = "0.4.2" version = "0.4.0"
edition = "2021" edition = "2021"
authors = ["Christoph J. Scherr <software@cscherr.de>"] authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT" license = "MIT"
@ -28,9 +28,10 @@ categories = [
[workspace.dependencies] [workspace.dependencies]
anyhow = "1.0.79" anyhow = "1.0.79"
thiserror = "1.0.56" thiserror = "1.0.56"
libpt-core = { version = "0.4.0", path = "members/libpt-core" } libpt-core = { version = "0.4.0-alpha.2", path = "members/libpt-core" }
libpt-bintols = { version = "0.4.0", path = "members/libpt-bintols" } libpt-bintols = { version = "0.4.0-alpha.2", path = "members/libpt-bintols" }
libpt-log = { version = "0.4.1", path = "members/libpt-log" } libpt-log = { version = "0.4.0-alpha.2", path = "members/libpt-log" }
libpt-py = { version = "0.4.0-alpha.2", path = "members/libpt-py" }
[package] [package]
name = "libpt" name = "libpt"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "libpt-log" name = "libpt-log"
publish.workspace = true publish.workspace = true
version = "0.4.1" version = "0.4.0"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
license.workspace = true license.workspace = true

View file

@ -2,14 +2,6 @@
name = "libpt-py" name = "libpt-py"
version.workspace = true version.workspace = true
edition.workspace = true edition.workspace = true
authors.workspace = true
license.workspace = true
description.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
[package.metadata.maturin] [package.metadata.maturin]
name = "libpt" name = "libpt"
@ -19,7 +11,7 @@ name = "libpt"
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
libpt = { version = "0.4.2", path = "../.." } libpt = { version = "0.4.0-alpha.1", path = "../.." }
pyo3 = { version = "0.19.0", features = ["full"] } pyo3 = { version = "0.19.0", features = ["full"] }
anyhow.workspace = true anyhow.workspace = true

View file

@ -5,7 +5,6 @@
//! //!
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this //! `pt` is a project consisting of multiple smaller crates, all bundled together in this
//! "main crate". Most crates will only show up if you activate their feature. //! "main crate". Most crates will only show up if you activate their feature.
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
#[cfg(feature = "bintols")] #[cfg(feature = "bintols")]
pub use libpt_bintols as bintols; pub use libpt_bintols as bintols;