diff --git a/INSTALL/lib/windows.ps1 b/INSTALL/lib/windows.ps1 index d074ecbf..902de66b 100755 --- a/INSTALL/lib/windows.ps1 +++ b/INSTALL/lib/windows.ps1 @@ -77,7 +77,7 @@ $version = python -c "import sys; print(f'{sys.version_info.major}.{sys.version_ if (-not $version) { Install-Python "Could not determine Python version." } -if ([version]$version -lt [version]"3.10" -or [version]$version -ge [version]"3.14") { +if ([version]$version -lt [version]"3.10" -or [version]$version -ge [version]"3.15") { Install-Python "An incompatible Python version is installed." } diff --git a/pyproject.toml b/pyproject.toml index 42513de8..e568dcf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ ] readme = { content-type = "text/markdown", file = "README.md" } license = { text = "MIT" } -requires-python = ">=3.10, <3.14" +requires-python = ">=3.10, <3.15" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: End Users/Desktop", @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Multimedia :: Graphics :: Viewers", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules",