Преглед изворни кода

Use ipaddress instead of unmaintained py2-ipaddress

And install it only for python<3.3 .
Nicola Soranzo пре 8 година
родитељ
комит
8da8cf482b
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      setup.py

+ 1 - 2
setup.py

@@ -63,8 +63,7 @@ setup(
     url='http://cloudbridge.cloudve.org/',
     install_requires=REQS_FULL,
     extras_require={
-        ':python_version=="2.7"': ['py2-ipaddress'],
-        ':python_version=="3"': ['py2-ipaddress'],
+        ':python_version<"3.3"': ['ipaddress'],
         'full': REQS_FULL,
         'dev': REQS_DEV
     },