Skip to content

Commit b7dea22

Browse files
project: move to handle defining version in pyproject
1 parent 47e0174 commit b7dea22

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ coverage.xml
3131
venv/
3232
tags
3333
.pytype/
34+
uv.lock

jenkinsapi/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,3 @@
9292
"view",
9393
]
9494
__docformat__ = "epytext"
95-
# In case of jenkinsapi is not installed in 'develop' mode
96-
__version__ = "0.3.13"

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "jenkinsapi"
7+
version = "0.3.13"
78
authors = [
89
{name = "Salim Fadhley", email = "[email protected]"},
910
{name = "Aleksey Maksimov", email = "[email protected]"},
@@ -37,7 +38,6 @@ classifiers = [
3738
"Topic :: Utilities",
3839
]
3940
requires-python = ">=3.8"
40-
dynamic = ["version"]
4141
dependencies = [
4242
"pytz>=2014.4",
4343
"requests>=2.3.0",
@@ -53,7 +53,6 @@ warnerrors = "True"
5353

5454
[project.scripts]
5555
jenkins_invoke = "jenkinsapi.command_line.jenkins_invoke:main"
56-
jenkinsapi_version = "jenkinsapi.command_line.jenkinsapi_version:main"
5756

5857
[tool.build_sphinx]
5958
source-dir = "doc/source"

0 commit comments

Comments
 (0)