diff --git a/prettyqt/__init__.py b/prettyqt/__init__.py index 50ffad063..985607a3e 100644 --- a/prettyqt/__init__.py +++ b/prettyqt/__init__.py @@ -2,7 +2,7 @@ __author__ = """Philipp Temminghoff""" __email__ = "phil65@kodi.tv" -__version__ = "1.57.3" +__version__ = "1.57.4" # import os diff --git a/pyproject.toml b/pyproject.toml index 61f1f9ff5..6ab90311a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PrettyQt" -version = "1.57.3" +version = "1.57.4" description = "A pythonic layer on top of PyQt6 / PySide6" readme = 'README.md' requires-python = ">=3.11" @@ -143,12 +143,14 @@ test = 'pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=pkg - + [tool.hatch.envs.default.scripts] test = 'pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=pkg --cov=tests' + [tool.hatch.envs.docs.scripts] build = "mkdocs build --clean" serve = "mkdocs serve --dirtyreload" @@ -156,6 +158,7 @@ serve = "mkdocs serve --dirtyreload" + [tool.hatch.build] sources = ["prettyqt"] include = [ @@ -185,7 +188,7 @@ dependencies = [ [tool.poetry] name = "PrettyQt" -version = "1.57.3" +version = "1.57.4" description = "A pythonic layer on top of PyQt6 / PySide6" readme = 'README.md' license = "MIT" @@ -227,6 +230,9 @@ iconbrowser = "prettyqt.custom_widgets.iconbrowser:run" [tool.poetry.plugins."pyinstaller40"] hook-dirs = "prettyqt.__pyinstaller:get_hook_dirs" +[tool.poetry.plugins."mkdocs.plugins"] +mknodes = "mknodes.plugin:MkNodesPlugin" + # [tool.poetry.plugins."pytest11"] # pytest-qt = "prettyqt.prettyqtest.plugin" @@ -448,7 +454,7 @@ exclude = ''' [tool.commitizen] name = "cz_conventional_commits" github_repo = "phil65/PrettyQt" -version = "1.57.3" +version = "1.57.4" tag_format = "v$version" update_changelog_on_bump = false changelog_start_rev = "v1.40.0"