File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 44 workflow_dispatch :
55 inputs :
66 version :
7- description : " Version number"
7+ description : " Version number: "
88 required : true
99 type : string
1010 build_number :
11- description : " Build number "
12- required : true
13- type : string
14- release_notes :
15- description : " Release notes for the version"
11+ description : " Build number:"
1612 required : true
1713 type : string
1814
4238 # Get inputs passed to the workflow
4339 VERSION="${{ github.event.inputs.version }}"
4440 BUILD_NUMBER="${{ github.event.inputs.build_number }}"
45- echo -e "${{ github.event.inputs.RELEASE_NOTES }}" > src/release/RELEASE-NOTES
4641
4742 # Save the parsed values for future steps
4843 echo "VERSION=$VERSION" >> $GITHUB_ENV
Original file line number Diff line number Diff line change 3636 CIBW_SKIP : pp* *-musllinux_*
3737 CIBW_MANYLINUX_X86_64_IMAGE : " quay.io/pypa/manylinux_2_34_x86_64"
3838 CIBW_MANYLINUX_AARCH64_IMAGE : " quay.io/pypa/manylinux_2_34_aarch64"
39- CIBW_ARCHS : " native"
39+ CIBW_ARCHS : " native" # Equivalent to python's platform.machine()
4040 CIBW_BEFORE_BUILD_WINDOWS : " pip install delvewheel"
4141 CIBW_REPAIR_WHEEL_COMMAND_WINDOWS : " delvewheel repair -w {dest_dir} {wheel}"
4242 CIBW_TEST_REQUIRES : " pydantic pytest pytest-asyncio"
You can’t perform that action at this time.
0 commit comments