Compare commits

...

2 Commits
v0.2.7 ... main

Author SHA1 Message Date
a517ca0ad6 add version string for 3.11.14 2025-10-23 10:59:29 +02:00
b54c4e934a do not build sdist with script 2025-07-04 13:14:57 +02:00
3 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[project] [project]
name = "pycage" name = "pycage"
version = "0.2.7" version = "0.2.8"
description = "tool to handle standalone Python installations from the CLI" description = "tool to handle standalone Python installations from the CLI"
authors = [ authors = [
{name = "Florian Förster", email = "f.foerster@d-opt.com"}, {name = "Florian Förster", email = "f.foerster@d-opt.com"},
@ -78,7 +78,7 @@ directory = "reports/coverage"
[tool.bumpversion] [tool.bumpversion]
current_version = "0.2.7" current_version = "0.2.8"
parse = """(?x) parse = """(?x)
(?P<major>0|[1-9]\\d*)\\. (?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\. (?P<minor>0|[1-9]\\d*)\\.

View File

@ -1 +1 @@
pdm build -d build/ pdm build -d build/ --no-sdist

View File

@ -13,4 +13,5 @@ PyVersionToReleaseTag: TypeAlias = tuple[str, str]
PY_VERSION_TO_RELEASE_TAG_PAIRS: Final[tuple[PyVersionToReleaseTag, ...]] = ( PY_VERSION_TO_RELEASE_TAG_PAIRS: Final[tuple[PyVersionToReleaseTag, ...]] = (
("3.11.12", "20250409"), ("3.11.12", "20250409"),
("3.11.13", "20250702"), ("3.11.13", "20250702"),
("3.11.14", "20251014"),
) )