Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- os: windows
target: x86_64
interpreter: pypy3.9 pypy3.10
interpreter: pypy3.9 pypy3.10 pypy3.11
- os: windows
target: i686
python-architecture: x86
Expand All @@ -36,15 +36,15 @@ jobs:

- os: macos
target: x86_64
interpreter: pypy3.9 pypy3.10
interpreter: pypy3.9 pypy3.10 pypy3.11
- os: macos
target: aarch64
# actions/setup-python@v5 does not support 3.8 and 3.9 on arm64
interpreter: 3.8 3.9 pypy3.9 pypy3.10
interpreter: 3.8 3.9 pypy3.9 pypy3.10 pypy3.11

- os: ubuntu
target: x86_64
interpreter: pypy3.9 pypy3.10
interpreter: pypy3.9 pypy3.10 pypy3.11
- os: ubuntu
target: i686
- os: ubuntu
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
target: ${{ matrix.target }}
manylinux: ${{ matrix.manylinux || 'auto' }}
container: ${{ matrix.container }}
args: --release --out dist --interpreter ${{ matrix.maturin-interpreter || matrix.interpreter || '3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10' }} ${{ matrix.extra-build-args }}
args: --release --out dist --interpreter ${{ matrix.maturin-interpreter || matrix.interpreter || '3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10 pypy3.11' }} ${{ matrix.extra-build-args }}
rust-toolchain: 1.76.0
docker-options: -e CI

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ edition = "2021"
license = "MIT"
description = "Python binding to the Rust IPLD library"
authors = ["Ilya (Marshal) <ilya@marshal.dev>"]
keywords = ["python", "binding", "library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "json", "pb", "dag-cbor", "dag-json"]
keywords = ["ipld", "cid", "multibase", "multihash", "dag-cbor"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libipld"
crate-type = ["rlib", "cdylib"]

[dependencies]
pyo3 = { version = "0.23.4", features = ["generate-import-lib", "anyhow"] }
python3-dll-a = "0.2.13"
pyo3 = { version = "0.25.1", features = ["generate-import-lib", "anyhow"] }
python3-dll-a = "0.2.14"
anyhow = "1.0.95"
libipld = { version = "0.16.0", features = ["dag-cbor"] }
multibase = "0.9.1"
Expand Down
2 changes: 1 addition & 1 deletion profiling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ structopt = "0.3.26"
clap = "4.5.29"

[dependencies.pyo3]
version = "0.23.4"
version = "0.25.1"
2 changes: 1 addition & 1 deletion profiling/src/profiles/encode_dag_cbor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub fn exec(iterations: u64) {

for _ in 0..iterations {
Python::with_gil(|gil| {
println!("{}", libipld::encode_dag_cbor(gil, &PyString::new_bound(gil, json_str)).is_ok());
println!("{}", libipld::encode_dag_cbor(gil, &PyString::new(gil, json_str)).is_ok());
});
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
license = "MIT"
repository = "https://github.com/MarshalX/python-libipld"
readme = "README.md"
keywords = ["library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "json", "pb", "dag-cbor", "dag-json"]
keywords = ["library", "lib", "ipld", "cid", "multibase", "multihash", "dag", "cbor", "dag-cbor"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down