浏览代码

Merge pull request #118 from nsoranzo/master

Use ipaddress instead of unmaintained py2-ipaddress
Nuwan Goonasekera 8 年之前
父节点
当前提交
f005723fb8
共有 2 个文件被更改,包括 3 次插入2 次删除
  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
     },