Skip to content

Commit

Permalink
🛠️️ Use hatch-vcs instead of uv-dynamic-versioning
Browse files Browse the repository at this point in the history
uv-dynamic-versioning supports only Python >= 3.9. hatch-vcs supports >= 3.8. Still not ideal, but I'm tired to get 3.6 and 3.7 support working. Easier just to drop them in the next release.
  • Loading branch information
Bobronium committed Dec 19, 2024
1 parent 7e4fce6 commit ee78ca2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ dev = [
version = {vcs = "git", style = "semver"}

[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[tool.hatch.version]
source = "uv-dynamic-versioning"
source = "vcs"
vcs = "git"
style = "semver"

0 comments on commit ee78ca2

Please sign in to comment.