diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-12-09 22:33:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-09 21:33:57 -0600 |
| commit | da2879d387b029ae32d33f24e4ee2eb282d3681e (patch) | |
| tree | 446b27446b1cb4352cccc657c81902cdf1470523 /setup.py | |
| parent | 657b75a01de302c34bbd8890b9803a8821662227 (diff) | |
| download | cryptography-da2879d387b029ae32d33f24e4ee2eb282d3681e.tar.gz | |
remove check from setup.py that's not needed anymore (#5626)
pypy 7.2 is the oldest pypy that supports py3.6
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -5,7 +5,6 @@ # for complete details. import os -import platform import sys from setuptools import find_packages, setup @@ -26,14 +25,6 @@ with open(os.path.join(src_dir, "cryptography", "__about__.py")) as f: # `setup_requirements` must be kept in sync with `pyproject.toml` setup_requirements = ["cffi>=1.12"] -if platform.python_implementation() == "PyPy": - if sys.pypy_version_info < (5, 4): - raise RuntimeError( - "cryptography is not compatible with PyPy < 5.4. Please upgrade " - "PyPy to use this library." - ) - - with open(os.path.join(base_dir, "README.rst")) as f: long_description = f.read() |
