Skip to content

Commit

Permalink
Fix maturin version used to build Python bindings (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja authored Aug 1, 2024
1 parent 6d5ff68 commit a597894
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-md-ulb-pwrap"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Python bindings for Rust crate md-ulb-pwrap."
readme = "README.md"
Expand Down
9 changes: 8 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin>=0.14,<0.15"]
requires = ["maturin"]
build-backend = "maturin"

[project]
Expand All @@ -9,4 +9,11 @@ classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "md-ulb-pwrap"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Markdown paragraph wrapper using Unicode Line Breaking Algorithm."
license = "BSD-3-Clause"
Expand Down

0 comments on commit a597894

Please sign in to comment.