From 2f1f34f693ba7c68f300e12f3ae91b244029ff16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeremy=20Lain=C3=A9?= Date: Sat, 30 Jun 2018 17:43:26 +0200 Subject: [PATCH] Build Windows wheels for Python 3.7 (fixes #75) --- cibuildwheel/windows.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cibuildwheel/windows.py b/cibuildwheel/windows.py index 77bba341..3fad67ae 100644 --- a/cibuildwheel/windows.py +++ b/cibuildwheel/windows.py @@ -40,6 +40,8 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be PythonConfiguration(version='3.5.x', arch="64", identifier='cp35-win_amd64', path='C:\Python35-x64'), PythonConfiguration(version='3.6.x', arch="32", identifier='cp36-win32', path='C:\Python36'), PythonConfiguration(version='3.6.x', arch="64", identifier='cp36-win_amd64', path='C:\Python36-x64'), + PythonConfiguration(version='3.7.x', arch="32", identifier='cp37-win32', path='C:\Python37'), + PythonConfiguration(version='3.7.x', arch="64", identifier='cp37-win_amd64', path='C:\Python37-x64'), ] abs_project_dir = os.path.abspath(project_dir)