From a597894bfa9556e0623b4802c0ea1d1eee6232a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar=20Rubio?= Date: Thu, 1 Aug 2024 14:22:11 +0200 Subject: [PATCH] Fix maturin version used to build Python bindings (#8) --- python/Cargo.toml | 2 +- python/pyproject.toml | 9 ++++++++- rust/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index 2f45742..1a1feaa 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -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" diff --git a/python/pyproject.toml b/python/pyproject.toml index b6847bd..f7604ea 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=0.14,<0.15"] +requires = ["maturin"] build-backend = "maturin" [project] @@ -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", ] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 18d2863..4f693f5 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -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"