Skip to content

Commit

Permalink
Changing how 3.5 is dropped
Browse files Browse the repository at this point in the history
Currently rpyc 5.0.0 gets installed on Python 3.5 (IIRC setup.py isn't executed on the installed system for wheels).  This change will tell pip that this version isn't compatible with 3.5.
  • Loading branch information
strainmike committed Jan 11, 2021
1 parent 6bc3bf0 commit 8f5fef1
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 8f5fef1

Please sign in to comment.