Skip to content

Commit 39bd983

Browse files
committed
bump of version to 25.4.5.1
1 parent 4ffc637 commit 39bd983

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

dsg_lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99
from datetime import date
1010

11-
__version__ = "2024-12-13-001"
11+
__version__ = "25.04.05-001"
1212
__author__ = "Mike Ryan"
1313
__license__ = "MIT"
1414
__copyright__ = f"Copyright© 2021-{date.today().year}"

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Variables
22
REPONAME = devsetgo_lib
3-
APP_VERSION = 2024-12-13-001
3+
APP_VERSION = 25.04.05-001
44
PYTHON = python3
55
PIP = $(PYTHON) -m pip
66
PYTEST = $(PYTHON) -m pytest

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "devsetgo_lib"
7-
version = "2024.12.13.1"
7+
version = "25.4.5.1"
88
requires-python = ">=3.9"
99
description = "DevSetGo Library is a Python library offering reusable functions for efficient coding. It includes file operations, calendar utilities, pattern matching, advanced logging with loguru, FastAPI endpoints, async database handling, and email validation. Designed for ease of use and versatility, it's a valuable tool for Python developers.\n"
1010
keywords = [ "python", "library", "reusable functions", "file operations", "calendar utilities", "pattern matching", "logging", "loguru", "FastAPI", "async database", "CRUD operations", "email validation", "development tools",]
1111
readme = "README.md"
1212
classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Operating System :: POSIX :: Linux", "Operating System :: POSIX", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows",]
1313
dependencies = [ "loguru>=0.7.0", "packaging>=22.0", "email-validator>=2.1.1", "watchfiles>=1.0.1,<1.1.1",]
14-
1514
[[project.authors]]
1615
name = "Mike Ryan"
1716
email = "mikeryan56@gmail.com"
@@ -95,7 +94,7 @@ quote-style = "single"
9594

9695
[tool.coverage.run]
9796
source = [ "dsg_lib",]
98-
omit = [ "setup.py", "_venv/*", "tests/*", "examples/*","ex.py","ex_*.py"]
97+
omit = [ "setup.py", "_venv/*", "tests/*", "examples/*", "ex.py", "ex_*.py",]
9998

10099
[tool.coverage.report]
101100
exclude_lines = [ "pragma: no cover", "if __name__", "def main", "import_sqlalchemy",]

0 commit comments

Comments
 (0)