Datasets:
Tasks:
Text Generation
Formats:
parquet
Sub-tasks:
language-modeling
Languages:
Danish
Size:
1M - 10M
License:
File size: 416 Bytes
3d99d06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from packaging.version import Version
from pathlib import Path
import toml
c_file = Path(__file__)
pyproject = c_file.parent.parent / "pyproject.toml"
with pyproject.open("r") as f:
data = toml.load(f)
version = Version(data["project"]["version"])
data["project"]["version"] = str(Version(f"{version.major}.{version.minor}.{version.micro + 1}"))
with pyproject.open("w") as f:
toml.dump(data, f) |