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:
283
283
run : |
284
284
version=$(echo "${{ github.ref_name }}" | sed "s/^v//")
285
285
# 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"
289
289
# extract changelog
290
290
awk -e '/^## / && ok {exit}' \
291
291
-e '/^## / {ok=1; next}' \
292
292
-e 'ok {print}' \
293
- "openslide-python -$version/CHANGELOG.md" > changes
293
+ "openslide_python -$version/CHANGELOG.md" > changes
294
294
gh release create --latest --verify-tag \
295
295
--repo "${{ github.repository }}" \
296
296
--title "OpenSlide Python $version" \
Original file line number Diff line number Diff line change 13
13
### Changes
14
14
15
15
* Drop wheel for 32-bit Windows
16
+ * Rename source distribution to ` openslide_python ` per [ PEP 625] [ ]
16
17
* Require ` AbstractSlide ` subclasses to implement all abstract methods
17
18
* Provide default ` AbstractSlide.set_cache() ` implementation
18
19
* Switch to [ PEP 621] [ ] project metadata
29
30
* docs: Fix types of properties that return tuples of items
30
31
31
32
[ installed from PyPI ] : https://pypi.org/project/openslide-bin/
33
+ [ PEP 625 ] : https://peps.python.org/pep-0625/
32
34
[ PEP 621 ] : https://peps.python.org/pep-0621/
33
35
[ Python filesystem encoding ] : https://docs.python.org/3/glossary.html#term-filesystem-encoding-and-error-handler
34
36
You can’t perform that action at this time.
0 commit comments