Bump version

This commit is contained in:
Joe Rickerby
2019-12-07 14:58:10 +00:00
parent 31e67c4f1f
commit 7709989603
5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ env:
# Note: TWINE_PASSWORD is set in Travis settings # Note: TWINE_PASSWORD is set in Travis settings
install: install:
- python -m pip install twine cibuildwheel==1.0.0 - python -m pip install twine cibuildwheel==1.1.0
script: script:
# build the wheels, put them into './wheelhouse' # build the wheels, put them into './wheelhouse'
+1 -1
View File
@@ -1 +1 @@
__version__ = '1.0.0' __version__ = '1.1.0'
+8 -8
View File
@@ -15,7 +15,7 @@ jobs:
- task: UsePythonVersion@0 - task: UsePythonVersion@0
- bash: | - bash: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install cibuildwheel==1.0.0 pip install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse . cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1 - task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'} inputs: {pathtoPublish: 'wheelhouse'}
@@ -25,7 +25,7 @@ jobs:
- task: UsePythonVersion@0 - task: UsePythonVersion@0
- bash: | - bash: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install cibuildwheel==1.0.0 pip install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse . cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1 - task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'} inputs: {pathtoPublish: 'wheelhouse'}
@@ -37,7 +37,7 @@ jobs:
displayName: Install Visual C++ for Python 2.7 displayName: Install Visual C++ for Python 2.7
- bash: | - bash: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install cibuildwheel==1.0.0 pip install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse . cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1 - task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'} inputs: {pathtoPublish: 'wheelhouse'}
@@ -75,7 +75,7 @@ env:
# Note: TWINE_PASSWORD is set in Travis settings # Note: TWINE_PASSWORD is set in Travis settings
install: install:
- python -m pip install twine cibuildwheel==1.0.0 - python -m pip install twine cibuildwheel==1.1.0
script: script:
# build the wheels, put them into './wheelhouse' # build the wheels, put them into './wheelhouse'
@@ -107,7 +107,7 @@ jobs:
- run: - run:
name: Build the Linux wheels. name: Build the Linux wheels.
command: | command: |
pip install --user cibuildwheel==1.0.0 pip install --user cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse cibuildwheel --output-dir wheelhouse
- store_artifacts: - store_artifacts:
path: wheelhouse/ path: wheelhouse/
@@ -121,7 +121,7 @@ jobs:
- run: - run:
name: Build the OS X wheels. name: Build the OS X wheels.
command: | command: |
pip install --user cibuildwheel==1.0.0 pip install --user cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse cibuildwheel --output-dir wheelhouse
- store_artifacts: - store_artifacts:
path: wheelhouse/ path: wheelhouse/
@@ -153,10 +153,10 @@ image:
- Visual Studio 2015 - Visual Studio 2015
build_script: build_script:
# windows # windows
- cmd: pip install cibuildwheel==1.0.0 - cmd: pip install cibuildwheel==1.1.0
- cmd: cibuildwheel --output-dir wheelhouse - cmd: cibuildwheel --output-dir wheelhouse
# linux # linux
- sh: "${HOME}/.localpython3.7.4/bin/python3 -m pip install cibuildwheel==1.0.0" - sh: "${HOME}/.localpython3.7.4/bin/python3 -m pip install cibuildwheel==1.1.0"
- sh: "${HOME}/.localpython3.7.4/bin/python3 -m cibuildwheel --output-dir wheelhouse" - sh: "${HOME}/.localpython3.7.4/bin/python3 -m cibuildwheel --output-dir wheelhouse"
artifacts: artifacts:
- path: "wheelhouse\\*.whl" - path: "wheelhouse\\*.whl"
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.0.0 current_version = 1.1.0
commit = True commit = True
tag = True tag = True
message = Bump version message = Bump version
+1 -1
View File
@@ -13,7 +13,7 @@ with io.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
setup( setup(
name='cibuildwheel', name='cibuildwheel',
version='1.0.0', version='1.1.0',
install_requires=['bashlex!=0.13'], install_requires=['bashlex!=0.13'],
description="Build Python wheels on CI with minimal configuration.", description="Build Python wheels on CI with minimal configuration.",
long_description=long_description, long_description=long_description,