We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eea54a commit 1038962Copy full SHA for 1038962
livereload/server.py
@@ -29,10 +29,7 @@
29
30
import sys
31
32
-if sys.version_info >= (3, 7):
33
- import errno
34
-else:
35
- from os import errno
+import errno
36
37
if sys.version_info >= (3, 8) and sys.platform == 'win32':
38
import asyncio
setup.py
@@ -36,7 +36,7 @@ def version():
],
license='BSD',
include_package_data=True,
39
- python_requires='>=3.6',
+ python_requires='>=3.7',
40
classifiers=[
41
'Development Status :: 4 - Beta',
42
'Environment :: Console',
@@ -48,10 +48,11 @@ def version():
48
'Operating System :: POSIX :: Linux',
49
'Programming Language :: Python',
50
'Programming Language :: Python :: 3',
51
- 'Programming Language :: Python :: 3.6',
52
'Programming Language :: Python :: 3.7',
53
'Programming Language :: Python :: 3.8',
54
'Programming Language :: Python :: 3.9',
+ 'Programming Language :: Python :: 3.10',
55
+ 'Programming Language :: Python :: 3.11',
56
'Programming Language :: Python :: 3 :: Only',
57
'Programming Language :: Python :: Implementation :: CPython',
58
'Programming Language :: Python :: Implementation :: PyPy',
0 commit comments