Explorar el Código

Use ipaddress instead of unmaintained py2-ipaddress

And install it only for python<3.3 .
Nicola Soranzo hace 8 años
padre
commit
8da8cf482b
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  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
     },