File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 python-version : 3.12
2020 - run : |
2121 pip install -r requirements-poetry.txt
22- poetry self add poetry-dynamic-versioning[plugin]
2322 poetry sync
2423 poetry build
2524 - name : Publish package distributions to PyPI
Original file line number Diff line number Diff line change 11[project ]
22name = " sql-compare"
3- version = " 0"
43description = " Compare SQL schemas"
54authors = [{ name = " Charly Laurent" , email = " charly.laurent@mergify.com" }]
65maintainers = [{ name = " Mergify" , email = " engineering@mergify.com" }]
@@ -28,11 +27,15 @@ classifiers = [
2827 " Topic :: Software Development :: Testing :: Unit" ,
2928]
3029requires-python = " >=3.9"
30+ dynamic = [" version" ]
3131
3232[project .urls ]
3333repository = " https://github.com/Mergifyio/sql-compare"
3434"Bug Tracker" = " https://github.com/Mergifyio/sql-compare/issues"
3535
36+ [tool .poetry ]
37+ version = " 0.0.0"
38+
3639[tool .poetry .dependencies ]
3740python = " ^3.9"
3841sqlparse = " >=0.5.0"
@@ -45,9 +48,15 @@ poethepoet = ">=0.26.1,<0.35.0"
4548deptry = " >=0.16.1,<0.24.0"
4649semgrep = " ^1.122.0"
4750
51+ [tool .poetry .requires-plugins ]
52+ poetry-dynamic-versioning = { version = " >=1.0.0,<2.0.0" , extras = [" plugin" ] }
53+
54+ [tool .poetry-dynamic-versioning ]
55+ enable = true
56+
4857[build-system ]
49- requires = [" poetry-core" ]
50- build-backend = " poetry.core.masonry.api "
58+ requires = [" poetry-core>=1.0.0 " , " poetry-dynamic-versioning>=1.0.0,<2.0.0 " ]
59+ build-backend = " poetry_dynamic_versioning.backend "
5160
5261[tool .poe ]
5362include = [" poe.toml" ]
You can’t perform that action at this time.
0 commit comments