Skip to content

Commit cb83e47

Browse files
update package
1 parent dd3eabb commit cb83e47

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- name: Install dependencies
1919
run: |
2020
poetry install
21+
- name: Show version (debug)
22+
run: poetry version
2123
- name: Publish
2224
env:
2325
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ disable = [
1717
]
1818

1919
[tool.poetry]
20-
name = "Flowpipe_Editor"
21-
version = "0.0.1"
20+
name = "flowpipe_editor"
21+
version = "0.0.0"
2222
description = "A lightweight framework for flow-based programming in python."
2323
authors = ["Jonas Sorgenfrei <[email protected]>"]
2424
license = "MIT"
@@ -36,6 +36,13 @@ classifiers = [
3636
python = ">=3.9"
3737
ascii-canvas = ">=2.0.0"
3838

39+
40+
[tool.poetry.plugins."poetry.plugin"]
41+
"dynamic-versioning" = "poetry_dynamic_versioning.plugin"
42+
43+
[tool.poetry-dynamic-versioning]
44+
enable = true
45+
3946
[tool.poetry.group.dev.dependencies]
4047
black = "^23.11.0"
4148
numpy = "^1.26.2"

0 commit comments

Comments
 (0)