Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL/lib/windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
Loading