Skip to content

Commit 33433f0

Browse files
authored
Merge pull request #73 from lelit/py37
Add support for Python 3.7
2 parents 57a2259 + e3981db commit 33433f0

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ What does it do?
1919
| Python 3.4 ||||||
2020
| Python 3.5 ||||||
2121
| Python 3.6 ||||||
22+
| Python 3.7 |||| | |
2223

2324
- Builds manylinux, macOS and Windows (32 and 64bit) wheels using Travis CI and Appveyor
2425
- Bundles shared library dependencies on Linux and macOS through [auditwheel](https://github.com/pypa/auditwheel) and [delocate](https://github.com/matthew-brett/delocate)
@@ -152,7 +153,7 @@ Space-separated list of builds to skip. Each build has an identifier like `cp27-
152153
153154
The format is `python_tag-platform_tag`. The tags are as defined in [PEP 0425](https://www.python.org/dev/peps/pep-0425/#details).
154155
155-
Python tags look like `cp27` `cp34` `cp35` `cp36`
156+
Python tags look like `cp27` `cp34` `cp35` `cp36` `cp37`
156157
157158
Platform tags look like `macosx_10_6_intel` `manylinux1_x86_64` `manylinux1_i686` `win32` `win_amd64`
158159

cibuildwheel/linux.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be
2525
PythonConfiguration(identifier='cp34-manylinux1_x86_64', path='/opt/python/cp34-cp34m'),
2626
PythonConfiguration(identifier='cp35-manylinux1_x86_64', path='/opt/python/cp35-cp35m'),
2727
PythonConfiguration(identifier='cp36-manylinux1_x86_64', path='/opt/python/cp36-cp36m'),
28+
PythonConfiguration(identifier='cp37-manylinux1_x86_64', path='/opt/python/cp37-cp37m'),
2829
PythonConfiguration(identifier='cp27-manylinux1_i686', path='/opt/python/cp27-cp27m'),
2930
PythonConfiguration(identifier='cp27-manylinux1_i686', path='/opt/python/cp27-cp27mu'),
3031
PythonConfiguration(identifier='cp34-manylinux1_i686', path='/opt/python/cp34-cp34m'),
3132
PythonConfiguration(identifier='cp35-manylinux1_i686', path='/opt/python/cp35-cp35m'),
3233
PythonConfiguration(identifier='cp36-manylinux1_i686', path='/opt/python/cp36-cp36m'),
34+
PythonConfiguration(identifier='cp37-manylinux1_i686', path='/opt/python/cp37-cp37m'),
3335
]
3436

3537
# skip builds as required

cibuildwheel/macos.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be
1717
PythonConfiguration(version='3.4', identifier='cp34-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.4.4/python-3.4.4-macosx10.6.pkg'),
1818
PythonConfiguration(version='3.5', identifier='cp35-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg'),
1919
PythonConfiguration(version='3.6', identifier='cp36-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg'),
20+
PythonConfiguration(version='3.7', identifier='cp37-macosx_10_6_intel', url='https://www.python.org/ftp/python/3.7.0/python-3.7.0rc1-macosx10.6.pkg'),
2021
]
2122
get_pip_url = 'https://bootstrap.pypa.io/get-pip.py'
2223
get_pip_script = '/tmp/get-pip.py'
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"CIBW_MANYLINUX1_X86_64_IMAGE": "dockcross/manylinux-x64",
3-
"CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86"
3+
"CIBW_MANYLINUX1_I686_IMAGE": "dockcross/manylinux-x86",
4+
"CIBW_SKIP": "cp37-manylinux*"
45
}

0 commit comments

Comments
 (0)