From 4771b84534c7928654f5af5504f0e3bd49100477 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Wed, 25 Nov 2020 08:34:57 -0500 Subject: Build wheels for Python 2.7 and 64 bit Windows Hopefully a fix for #47. --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 3137685..6266dfd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,6 +2,7 @@ environment: matrix: - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python36" -- cgit v1.2.1 From 837160019a930e406eb2a6200584231d651e27dd Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Wed, 25 Nov 2020 11:28:08 -0500 Subject: Fetch py27+amd64 wheel --- fetch-win32-wheels | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-win32-wheels b/fetch-win32-wheels index 45ea8e0..830ffc3 100755 --- a/fetch-win32-wheels +++ b/fetch-win32-wheels @@ -16,7 +16,7 @@ fi niversion=$1 artifact_url="https://ci.appveyor.com/api/projects/al45tair/netifaces/artifacts" win32_versions="27 34 35 36 37 38" -amd64_versions="36 37 38" +amd64_versions="27 36 37 38" for version in $win32_versions; do wheel=netifaces-$niversion-cp$version-cp${version}m-win32.whl -- cgit v1.2.1