Compare commits

...
4 Commits
4 changed files with 23 additions and 5 deletions
+14 -2
View File
@@ -119,7 +119,7 @@ jobs:
env: PIP=pip2
script:
- $PIP install cibuildwheel==0.11.0
- $PIP install cibuildwheel==0.11.1
- cibuildwheel --output-dir wheelhouse
```
@@ -192,7 +192,7 @@ jobs:
```
build_script:
- pip install cibuildwheel==0.11.0
- pip install cibuildwheel==0.11.1
- cibuildwheel --output-dir wheelhouse
artifacts:
- path: "wheelhouse\\*.whl"
@@ -501,6 +501,18 @@ This is similar to static linking, so it might have some licence implications. C
Changelog
=========
### 0.11.0
_26 May 2019_
- ✨ Add support for building on Azure pipelines! This lets you build all
Linux, Mac and Windows wheels on one service, so it promises to be the
easiest to set up! Check out the quickstart in the docs, or
[cibuildwheel-azure-example](https://github.com/joerick/cibuildwheel-azure-example)
for an example project. (#126, #132)
- 🛠 Internal change - the end-to-end test projects format was updated, so we
can more precisely assert what should be produced for each one. (#136, #137).
### 0.10.2
_10 March 2019_
+1 -1
View File
@@ -1 +1 @@
__version__ = '0.11.0'
__version__ = '0.11.1'
+4 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.11.1
commit = True
tag = True
message = Bump version
@@ -12,3 +12,6 @@ message = Bump version
search = cibuildwheel=={current_version}
replace = cibuildwheel=={new_version}
[bdist_wheel]
universal = 1
+4 -1
View File
@@ -8,7 +8,7 @@ except ImportError:
setup(
name='cibuildwheel',
version='0.11.0',
version='0.11.1',
install_requires=['bashlex!=0.13'],
description="Build Python wheels on CI with minimal configuration.",
long_description='For readme please see http://github.com/joerick/cibuildwheel',
@@ -18,6 +18,9 @@ setup(
packages=['cibuildwheel',],
license="BSD",
zip_safe=False,
package_data={
'cibuildwheel': ['resources/*'],
},
keywords='ci wheel packaging pypi travis appveyor macos linux windows',
classifiers=[
'Intended Audience :: Developers',