From ee870af6b516d1a1294fb2faa326e8d80f77b8b9 Mon Sep 17 00:00:00 2001 From: konstin Date: Wed, 4 Dec 2024 16:31:31 +0100 Subject: [PATCH] v0.7.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 4 ++++ pyproject.toml | 16 ---------------- 4 files changed, 6 insertions(+), 18 deletions(-) delete mode 100644 pyproject.toml diff --git a/Cargo.lock b/Cargo.lock index 50725c6..0046281 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -87,7 +87,7 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" [[package]] name = "pep440_rs" -version = "0.7.2" +version = "0.7.3" dependencies = [ "indoc", "once_cell", diff --git a/Cargo.toml b/Cargo.toml index e3b706b..f5fcd47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pep440_rs" -version = "0.7.2" +version = "0.7.3" description = "A library for python version numbers and specifiers, implementing PEP 440" edition = "2021" include = ["/src", "Changelog.md", "License-Apache", "License-BSD", "Readme.md", "pyproject.toml"] diff --git a/Changelog.md b/Changelog.md index 0a5dd3e..3d2f7e1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# 0.7.3 + +* Use once_cell to lower MSRV + # 0.7.2 * Add optional conversion to [version-ranges](https://crates.io/crates/version-ranges). diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index b802962..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,16 +0,0 @@ -[project] -name = "pep440_rs" -version = "0.6.5" -readme = "python/Readme.md" - -[build-system] -requires = ["maturin>=1.0.0,<2.0.0"] -build-backend = "maturin" - -[tool.maturin] -features = ["pyo3"] -python-source = "python" -module-name = "pep440_rs._pep440_rs" - -[tool.ruff.lint.per-file-ignores] -"python/pep440_rs/__init__.py" = ["F403", "F405"]