Skip to content

Commit

Permalink
Merge pull request #429 from badgraphicsghost/fixing-dropped-python-3.5
Browse files Browse the repository at this point in the history
Preventing rpyc 5.x from installing on Python 3.5
  • Loading branch information
comrumino committed Jan 11, 2021
2 parents da188fc + 8f5fef1 commit 1eaac28
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
except ImportError:
from distutils.core import setup

if sys.version_info < (3, 6):
sys.exit("requires python 3.6 and up")

here = os.path.dirname(__file__)
exec(open(os.path.join(here, 'rpyc', 'version.py')).read())

Expand Down Expand Up @@ -43,6 +40,7 @@
# ],
# ),
platforms=["POSIX", "Windows"],
python_requires='>=3.6',
use_2to3=False,
zip_safe=False,
long_description=open(os.path.join(here, "README.rst"), "r").read(),
Expand Down

0 comments on commit 1eaac28

Please sign in to comment.