Skip to content

Commit 5e3b28f

Browse files
authored
Merge pull request #414 from bgilbert/pypi
workflows: upload source archive to PyPI as `openslide_bin-*`
2 parents 2f99b18 + 798f73a commit 5e3b28f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ jobs:
7575
mkdir pypi
7676
cp -a \
7777
"upload/openslide-bin-${{ needs.stable.outputs.version }}.tar.gz" \
78-
upload/*.whl pypi/
78+
"pypi/openslide_bin-${{ needs.stable.outputs.version }}.tar.gz"
79+
cp -a upload/*.whl pypi/
7980
- name: Release to PyPI
8081
uses: pypa/gh-action-pypi-publish@release/v1
8182
with:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Notable Changes in openslide-bin
22

3-
## Version 4.0.0.9, 2025-12-03
3+
## Version 4.0.0.10, 2025-12-03
44

55
* Drop Python 3.8 support in Python package
66
* Enable SIMD JPEG decoding on macOS x86_64

common/meson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# A.B.C = OpenSlide version
3333
# D = ordinal of the openslide-bin release with this A.B.C, starting from 1
3434
# Update the version when releasing openslide-bin.
35-
_PROJECT_VERSION = '4.0.0.9'
35+
_PROJECT_VERSION = '4.0.0.10'
3636

3737

3838
def meson_source_root() -> Path:

0 commit comments

Comments
 (0)