File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -283,14 +283,14 @@ jobs:
283283 run : |
284284 version=$(echo "${{ github.ref_name }}" | sed "s/^v//")
285285 # recompress tarball with xz
286- gunzip -k "${{ needs.pre-commit.outputs.dist-base }}/openslide-python -${version}.tar.gz"
287- tar xf "${{ needs.pre-commit.outputs.dist-base }}/openslide-python -${version}.tar"
288- xz -9 "${{ needs.pre-commit.outputs.dist-base }}/openslide-python -${version}.tar"
286+ gunzip -k "${{ needs.pre-commit.outputs.dist-base }}/openslide_python -${version}.tar.gz"
287+ tar xf "${{ needs.pre-commit.outputs.dist-base }}/openslide_python -${version}.tar"
288+ xz -9 "${{ needs.pre-commit.outputs.dist-base }}/openslide_python -${version}.tar"
289289 # extract changelog
290290 awk -e '/^## / && ok {exit}' \
291291 -e '/^## / {ok=1; next}' \
292292 -e 'ok {print}' \
293- "openslide-python -$version/CHANGELOG.md" > changes
293+ "openslide_python -$version/CHANGELOG.md" > changes
294294 gh release create --latest --verify-tag \
295295 --repo "${{ github.repository }}" \
296296 --title "OpenSlide Python $version" \
Original file line number Diff line number Diff line change 1313### Changes
1414
1515* Drop wheel for 32-bit Windows
16+ * Rename source distribution to ` openslide_python ` per [ PEP 625] [ ]
1617* Require ` AbstractSlide ` subclasses to implement all abstract methods
1718* Provide default ` AbstractSlide.set_cache() ` implementation
1819* Switch to [ PEP 621] [ ] project metadata
2930* docs: Fix types of properties that return tuples of items
3031
3132[ installed from PyPI ] : https://pypi.org/project/openslide-bin/
33+ [ PEP 625 ] : https://peps.python.org/pep-0625/
3234[ PEP 621 ] : https://peps.python.org/pep-0621/
3335[ Python filesystem encoding ] : https://docs.python.org/3/glossary.html#term-filesystem-encoding-and-error-handler
3436
You can’t perform that action at this time.
0 commit comments