Skip to content

Commit c00b175

Browse files
fix: Remove poetry-dynamic-versioning, match auth0-python build config
- Remove [tool.poetry-dynamic-versioning] section (vcs=none is invalid) - Use poetry.core.masonry.api as build backend matching auth0-python - Restore pyproject.toml in .shiprc matching auth0-python pattern
1 parent b65697d commit c00b175

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.shiprc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"files": {
3-
".version": []
3+
".version": [],
4+
"pyproject.toml": ["version = \"{MAJOR}.{MINOR}.{PATCH}\""]
45
},
56
"prefixVersion": false
67
}

pyproject.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,6 @@ ignore = [
8585
[tool.ruff.lint.isort]
8686
section-order = ["future", "standard-library", "third-party", "first-party"]
8787

88-
[tool.poetry-dynamic-versioning]
89-
enable = true
90-
style = "pep440"
91-
vcs = "none"
92-
9388
[build-system]
94-
requires = ["poetry-core", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
95-
build-backend = "poetry_dynamic_versioning.backend"
89+
requires = ["poetry-core"]
90+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)