1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/py3-fido2/broken-check.patch
2019-10-24 16:02:37 -03:00

23 lines
606 B
Diff

diff --git a/setup.py b/setup.py
index fa723fc..2298bac 100755
--- a/setup.py
+++ b/setup.py
@@ -25,17 +25,10 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-from distutils.version import StrictVersion
from setuptools import setup, find_packages, __version__
import re
import sys
-if StrictVersion(__version__) < StrictVersion("20.2"):
- sys.exit(
- "Your setuptools version does not support PEP 508.\n"
- "Please install setuptools 20.2 or later."
- )
-
def get_version():
with open("fido2/__init__.py", "r") as f: