File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 55 # Run every weekday at 23:40 EDT (cron is in UTC)
66 - cron : " 40 3 * * 2-6"
77 workflow_dispatch :
8+ inputs :
9+ build-linux-arm :
10+ description : ' Publish ARM wheels for Linux'
11+ default : false
12+ required : false
13+ type : boolean
814
915jobs :
1016 setup :
3642 uses : ./.github/workflows/build-wheel-linux-x86_64.yaml
3743
3844 linux-aarch :
45+ if : ${{ inputs.build-linux-arm }}
3946 name : Build on Linux aarch64
4047 needs : [setup]
4148 uses : ./.github/workflows/build-wheel-linux-arm64.yaml
4754
4855 upload :
4956 name : Prepare & Upload wheels to TestPyPI
57+ if : ${{ !failure() && !cancelled() }} # needed in case linux-aarch is skipped
5058 needs : [linux-x86, macos-arm, linux-aarch]
5159 runs-on : ubuntu-22.04
5260 permissions :
Original file line number Diff line number Diff line change 1616Version number (major.minor.patch[-label])
1717"""
1818
19- __version__ = "0.12.0-dev24 "
19+ __version__ = "0.12.0-dev27 "
You can’t perform that action at this time.
0 commit comments