Skip to content

Commit 43548d1

Browse files
committed
remove release notes and add comments
1 parent a004bf2 commit 43548d1

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/prep-release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@ on:
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

@@ -42,7 +38,6 @@ jobs:
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

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
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"

0 commit comments

Comments
 (0)