diff --git a/poetry.lock b/poetry.lock index ed2a79a..986d795 100644 --- a/poetry.lock +++ b/poetry.lock @@ -545,5 +545,5 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess [metadata] lock-version = "2.0" -python-versions = ">=3.8,<3.13" -content-hash = "1596b37afad284ed40214b334a162148c7461a1df6358b24329705a55cf82020" +python-versions = ">=3.8,<3.12" +content-hash = "a72acf06ebb7f4e66261090cc1ff38ac7b56f64da88ddf6b877808db8bf2c037" diff --git a/pyproject.toml b/pyproject.toml index 7163d45..6677bdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "py2exe-gui" -version = "0.1.9" +version = "0.1.10" description = "GUI for PyInstaller, based on PySide6" keywords = ["PyInstaller", "GUI", "PySide6"] authors = ["muzing "] @@ -12,8 +12,13 @@ exclude = ["src/py2exe_gui/Resources/Icons", "src/py2exe_gui/Resources/Texts"] [tool.poetry.urls] "Bug Tracker" = "https://github.com/muziing/Py2exe-GUI/issues" +#[[tool.poetry.source]] +#name = "tsinghua_mirror" +#url = "https://pypi.tuna.tsinghua.edu.cn/simple/" +#priority = "default" + [tool.poetry.dependencies] -python = ">=3.8,<3.13" +python = ">=3.8,<3.12" PySide6 = "^6.6.0" [tool.poetry.group.dev] diff --git a/src/py2exe_gui/Constants/app_constants.py b/src/py2exe_gui/Constants/app_constants.py index 5494a54..7b7a5c8 100644 --- a/src/py2exe_gui/Constants/app_constants.py +++ b/src/py2exe_gui/Constants/app_constants.py @@ -8,6 +8,6 @@ class AppConstant: """ NAME = "Py2exe-GUI" - VERSION = "0.1.9" + VERSION = "0.1.10" AUTHORS = ["muzing "] LICENSE = "GPL-3.0-or-later"