We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23d6e8 commit e634e32Copy full SHA for e634e32
.github/workflows/release.yml
@@ -302,8 +302,9 @@ jobs:
302
mkdir -p "${TEMP_DIR}"
303
cp -r . "${TEMP_DIR}/"
304
cd "${TEMP_DIR}"
305
- sed -i 's/^name = "lindera-python"/name = "${{ matrix.features.package_name }}"/' pyproject.toml
306
- sed -i 's/^description = ".*"/description = "${{ matrix.features.package_description }}"/' pyproject.toml
+ # macOS uses BSD sed which requires empty string for -i
+ sed -i '' 's/^name = "lindera-python"/name = "${{ matrix.features.package_name }}"/' pyproject.toml
307
+ sed -i '' 's/^description = ".*"/description = "${{ matrix.features.package_description }}"/' pyproject.toml
308
309
- name: Build wheels
310
uses: PyO3/maturin-action@v1
0 commit comments