diff --git a/ua-parser-builtins/hatch_build.py b/ua-parser-builtins/hatch_build.py index e92e973..1eac776 100644 --- a/ua-parser-builtins/hatch_build.py +++ b/ua-parser-builtins/hatch_build.py @@ -23,6 +23,9 @@ def update(self, metadata: dict[str, Any]) -> None: } }, ) + if v in ("0.15.0", "0.16.0", "0.18.0"): + v = f"{v}.post1" + metadata["version"] = v diff --git a/ua-parser-builtins/pyproject.toml b/ua-parser-builtins/pyproject.toml index db0da38..a9c6d3e 100644 --- a/ua-parser-builtins/pyproject.toml +++ b/ua-parser-builtins/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "ua-parser-builtins" description = "Precompiled rules for User Agent Parser" readme = "README.md" -dependencies = ["ua-parser"] +dependencies = [] requires-python = ">=3.9" license = {text = "Apache 2.0"} urls = {repository = "https://github.com/ua-parser/uap-python"}