summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Holth <dholth@fastmail.fm>2017-07-07 23:18:02 +0000
committerDaniel Holth <dholth@fastmail.fm>2017-07-07 23:18:02 +0000
commit2bcf2fe16602b3393e3324436a88f9887161235e (patch)
treeebc85ffe8200850a35be30da30786c2767d41834
parent235e161cfec6d80d2f8ca92fb52c11b4100eaba0 (diff)
parent6cf95a60b3c7ae44cc1f4835b4a5153ae508d084 (diff)
downloadwheel-2bcf2fe16602b3393e3324436a88f9887161235e.tar.gz
Merged in dholth/wheel-fork (pull request #69)
add py-limited-api flag to control abi3 wheel tagging
-rw-r--r--appveyor.yml5
-rw-r--r--wheel/archive.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..37ffa8e
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,5 @@
+version: "{build}"
+install:
+- cmd: python -m pip install tox
+build_script:
+- cmd: python -m tox
diff --git a/wheel/archive.py b/wheel/archive.py
index fa30a70..403d45b 100644
--- a/wheel/archive.py
+++ b/wheel/archive.py
@@ -8,7 +8,7 @@ import logging
import os.path
import zipfile
-log = logging.getLogger("wheel")
+from distutils import log
def archive_wheelfile(base_name, base_dir):