⬆️ 升级(setup.py):将Python的最低版本要求从3.6.0升级到3.9.0

 功能(setup.py):添加对Python 3.10的支持
This commit is contained in:
shitao 2024-03-07 14:52:19 +08:00
parent 72729dade8
commit 5fa538e640

View File

@ -7,7 +7,7 @@ FOLDER = "dailycheckin"
DESCRIPTION = "dailycheckin" DESCRIPTION = "dailycheckin"
EMAIL = "133397418@qq.com" EMAIL = "133397418@qq.com"
AUTHOR = "Sitoi" AUTHOR = "Sitoi"
REQUIRES_PYTHON = ">=3.6.0" REQUIRES_PYTHON = ">=3.9.0"
VERSION = None VERSION = None
@ -73,10 +73,8 @@ setup(
entry_points={"console_scripts": ["dailycheckin = dailycheckin.main:checkin"]}, entry_points={"console_scripts": ["dailycheckin = dailycheckin.main:checkin"]},
classifiers=[ classifiers=[
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
], ],