Skip to content

Commit 6a4fa07

Browse files
committed
Updated setup.py to reflect 3.6, 3.7, 3.8, 3.9, and 3.10-rc being supported
1 parent 0a13c33 commit 6a4fa07

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
except ImportError:
99
from distutils.core import setup
1010

11-
if sys.version_info < (2, 6):
12-
sys.exit("requires python 2.6 and up")
11+
if sys.version_info < (3, 6):
12+
sys.exit("requires python 3.6 and up")
1313

1414
here = os.path.dirname(__file__)
1515
exec(open(os.path.join(here, 'rpyc', 'version.py')).read())
@@ -57,6 +57,7 @@
5757
"Programming Language :: Python :: 3.7",
5858
"Programming Language :: Python :: 3.8",
5959
"Programming Language :: Python :: 3.9",
60+
"Programming Language :: Python :: 3.10-rc",
6061
"Topic :: Internet",
6162
"Topic :: Software Development :: Libraries :: Python Modules",
6263
"Topic :: Software Development :: Object Brokering",

0 commit comments

Comments
 (0)