mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
25 lines
889 B
Diff
25 lines
889 B
Diff
diff --git a/setup.py b/setup.py
|
|
index 0d987d5..82da3ad 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -63,19 +63,6 @@ try:
|
|
|
|
setup, Command = setuptools.setup, setuptools.Command
|
|
|
|
- observed_version = [int(x) for x in setuptools.__version__.split('.')]
|
|
- required_version = [36, 2, 0]
|
|
-
|
|
- # NOTE(etingof): require fresh setuptools to build proper wheels
|
|
- # See also: https://hynek.me/articles/conditional-python-dependencies/
|
|
- if ('bdist_wheel' in sys.argv and
|
|
- observed_version < required_version):
|
|
- print("ERROR: your wheels won't come out round with setuptools %s! "
|
|
- "Upgrade to %s and try again." % (
|
|
- '.'.join([str(x) for x in observed_version]),
|
|
- '.'.join([str(x) for x in required_version])))
|
|
- sys.exit(1)
|
|
-
|
|
params = {
|
|
'install_requires': requires,
|
|
'zip_safe': True
|
|
|