Skip to content

Commit

Permalink
Run cibuildwheel on new tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
clonker committed Dec 5, 2022
1 parent 926751d commit 3ef679e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 19 deletions.
23 changes: 4 additions & 19 deletions devtools/azure-pipelines-cibuildwheel.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
trigger:
branches:
tags:
include:
- '*'
branches:
exclude:
- main

jobs:
- job: linux
pool: { vmImage: 'Ubuntu-22.04' }
strategy:
matrix:
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
- bash: |
Expand All @@ -32,14 +29,8 @@ jobs:
pool: { vmImage: 'macOS-12' }
strategy:
matrix:
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
- bash: |
Expand All @@ -56,14 +47,8 @@ jobs:
pool: { vmImage: 'windows-2019' }
strategy:
matrix:
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
- bash: |
Expand Down
1 change: 1 addition & 0 deletions devtools/checkout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ steps:
- checkout: self
submodules: false
displayName: 'checkout'
fetchTags: true
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,6 @@ omit = ["*/**/setup.py", "tests/*", "deeptime/_version.py"]

[tool.coverage.run]
omit = ["*/**/setup.py", "tests/*", "*/**/*.pyx", "deeptime/_version.py"]

[tool.cibuildwheel]
build-verbosity = 1

0 comments on commit 3ef679e

Please sign in to comment.