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 0a13c33 commit 6a4fa07Copy full SHA for 6a4fa07
setup.py
@@ -8,8 +8,8 @@
8
except ImportError:
9
from distutils.core import setup
10
11
-if sys.version_info < (2, 6):
12
- sys.exit("requires python 2.6 and up")
+if sys.version_info < (3, 6):
+ sys.exit("requires python 3.6 and up")
13
14
here = os.path.dirname(__file__)
15
exec(open(os.path.join(here, 'rpyc', 'version.py')).read())
@@ -57,6 +57,7 @@
57
"Programming Language :: Python :: 3.7",
58
"Programming Language :: Python :: 3.8",
59
"Programming Language :: Python :: 3.9",
60
+ "Programming Language :: Python :: 3.10-rc",
61
"Topic :: Internet",
62
"Topic :: Software Development :: Libraries :: Python Modules",
63
"Topic :: Software Development :: Object Brokering",
0 commit comments