Require Python >= 3.6

Python 3.4 and 3.5 haven't been tested for long time. Enforce
the minimum version so that users may not attempt to use untested
ancient python versions.

Note that Python 3.6 ~ 3.8 already reached their EOL and we may even
remove support for these in the near future.
This commit is contained in:
Takashi Kajinami 2025-06-04 01:00:13 +09:00
parent 4acdb13d5b
commit aa5f0bf8ab
2 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,7 @@ setup(name=name,
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires='>=3.6',
keywords='noVNC websockify',
license='LGPLv3',
url="https://github.com/novnc/websockify",

View File

@ -2,4 +2,3 @@ mock
nose2
six
redis
wrapt<=1.12.1;python_version<="3.4"