Skip to content

Commit

Permalink
Enable dynamic-versioning using poetry-dynamic-versioning (#310)
Browse files Browse the repository at this point in the history
Was disabled by mistake.
  • Loading branch information
nhuet authored Jan 29, 2024
1 parent 3e5bacb commit e93ab7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scikit-decide"
version = "0.9.8.dev19+4ad63a353"
version = "0.0.0" # placeholder for poetry-dynamic-versioning
description = "The AI framework for Reinforcement Learning, Automated Planning and Scheduling"
authors = ["Airbus AI Research <scikit-decide@airbus.com>"]
license = "MIT"
Expand Down Expand Up @@ -36,7 +36,7 @@ script = "builder.py"
generate-setup-file = true

[tool.poetry-dynamic-versioning]
enable = false
enable = true
vcs = "git"
format-jinja = """
{%- if distance == 0 -%}
Expand Down
2 changes: 1 addition & 1 deletion skdecide/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from skdecide.solvers import *
from skdecide.utils import *

__version__ = "0.9.8.dev19+4ad63a353"
__version__ = "0.0.0"

0 comments on commit e93ab7b

Please sign in to comment.