Explorar o código

Merge pull request #118 from nsoranzo/master

Use ipaddress instead of unmaintained py2-ipaddress
Nuwan Goonasekera %!s(int64=8) %!d(string=hai) anos
pai
achega
f005723fb8
Modificáronse 2 ficheiros con 3 adicións e 2 borrados
  1. 2 0
      setup.cfg
  2. 1 2
      setup.py

+ 2 - 0
setup.cfg

@@ -14,3 +14,5 @@ match=^[Tt]est
 # Don't capture stdout - print immediately
 nocapture=1
 
+[bdist_wheel]
+universal = 1

+ 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
     },