Version 0.1.10

由于当前 PyInstaller [不支持 Python 3.12](https://github.com/pyinstaller/pyinstaller/issues/7992),故移除本项目对 3.12 的支持
This commit is contained in:
muzing 2023-11-12 21:30:45 +08:00
parent b291229cd3
commit da85747f6a
3 changed files with 10 additions and 5 deletions

4
poetry.lock generated
View File

@ -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"

View File

@ -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 <muzi2001@foxmail.com>"]
@ -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]

View File

@ -8,6 +8,6 @@ class AppConstant:
"""
NAME = "Py2exe-GUI"
VERSION = "0.1.9"
VERSION = "0.1.10"
AUTHORS = ["muzing <muzi2001@foxmail.com>"]
LICENSE = "GPL-3.0-or-later"