-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1004 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
authors = [{name = "avcopan", email = "avcopan@gmail.com"}]
dependencies = []
name = "test-release-workflow"
requires-python = ">= 3.11"
version = "1.2025.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
test_release_workflow = { path = ".", editable = true }
[tool.pixi.tasks]
current-version = "bumpver show -n | awk -F': ' '/Current Version: / {print $2}'"
[tool.pixi.dependencies]
bumpver = ">=2025.1131,<2026"
[tool.bumpver]
current_version = "1.2025.0"
version_pattern = "MAJOR.YYYY.PATCH"
commit_message = "Release {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = "scripts/update_lockfile.sh"
post_commit_hook = ""
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
]
"src/test_release_workflow/__init__.py" = [
'__version__ = "{version}"',
]