From 7e1f340ff9cf117b359175b29e08b79a3299292c Mon Sep 17 00:00:00 2001 From: AlexandreSenpai Date: Sat, 11 Jan 2025 16:53:48 -0300 Subject: [PATCH] chore: add version to pyproject --- enma/_version.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/enma/_version.py b/enma/_version.py index c2bcf2e..d6b5a93 100644 --- a/enma/_version.py +++ b/enma/_version.py @@ -12,5 +12,5 @@ __version_tuple__: VERSION_TUPLE version_tuple: VERSION_TUPLE -__version__ = version = '2.4.5.dev2+g51847f2.d20250111' -__version_tuple__ = version_tuple = (2, 4, 5, 'dev2', 'g51847f2.d20250111') +__version__ = version = '2.4.4' +__version_tuple__ = version_tuple = (2, 4, 4) diff --git a/pyproject.toml b/pyproject.toml index 41ba317..9abccfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [project] name = "enma" +version = "2.4.4" description = "Enma is a Python library designed to fetch manga and doujinshi data from many sources." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.9.0" @@ -11,7 +12,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent" ] -dynamic = ["version"] [project.urls] "Github" = "https://github.com/AlexandreSenpai/Enma"