Skip to content

Commit 73d691f

Browse files
committed
OpenSlide Python 1.4.0
The source tarball has been renamed to openslide_python-*. Signed-off-by: Benjamin Gilbert <bgilbert@cs.cmu.edu>
1 parent 5403621 commit 73d691f

5 files changed

Lines changed: 20 additions & 3 deletions

File tree

_data/releases.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ c:
2626
- {version: 2.1.0, date: 2009-08-18, gz: 1}
2727
- {version: 2.0.0, date: 2009-07-16, gz: 1}
2828
python:
29+
- {version: 1.4.0, date: 2024-10-29, gz: 1, xz: 1, whl: 1, src_: 1}
2930
- {version: 1.3.1, date: 2023-10-08, gz: 1, xz: 1, whl: 1}
3031
- {version: 1.3.0, date: 2023-07-22, gz: 1, xz: 1, whl: 1}
3132
- {version: 1.2.0, date: 2022-06-17, gz: 1, xz: 1, whl: 1}

_includes/links.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@
6060
[bin-issues]: https://github.com/openslide/openslide-bin/issues
6161
[builds-issues]: https://github.com/openslide/builds/issues
6262
[site-issues]: https://github.com/openslide/openslide.github.io/issues
63+
64+
[bin-pypi]: https://pypi.org/project/openslide-bin/

_includes/news.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{% include links.md %}
22

3+
## OpenSlide Python version 1.4.0, 2024-10-29
4+
5+
[OpenSlide Python 1.4.0][python-1.4.0] adds support for OpenSlide [installed
6+
from PyPI][bin-pypi], adds type hints, adds Linux and macOS wheels, drops
7+
32-bit Windows wheels, and fixes bugs.
8+
9+
[python-1.4.0]: https://github.com/openslide/openslide-python/releases/tag/v1.4.0
10+
11+
312
## Binary build 4.0.0.6, 2024-09-29
413

514
[Binary build 4.0.0.6][bin-4.0.0.6] switches from zlib to zlib-ng and

_includes/source-release-table.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
<div class="releases indent">
1717
<table>
1818
{% for release in releases %}
19+
{% if release.src_ %}
20+
{% capture srcname %}{{ package|replace:'-','_' }}{% endcapture %}
21+
{% else %}
22+
{% assign srcname = package %}
23+
{% endif %}
1924
<tr class="{% cycle package: 'odd', 'even' %}">
2025
<th>
2126
<a href="https://github.com/openslide/{{ package }}/releases/tag/v{{ release.version }}">
@@ -25,14 +30,14 @@
2530
<td>{{ release.date }}</td>
2631
<td>
2732
{% if release.gz %}
28-
<a href="https://github.com/openslide/{{ package }}/releases/download/v{{ release.version }}/{{ package }}-{{ release.version }}.tar.gz">tar.gz</a>
33+
<a href="https://github.com/openslide/{{ package }}/releases/download/v{{ release.version }}/{{ srcname }}-{{ release.version }}.tar.gz">tar.gz</a>
2934
{% elsif release.gh %}
3035
<a href="https://github.com/openslide/{{ package }}/archive/refs/tags/v{{ release.version }}.tar.gz">tar.gz</a>
3136
{% endif %}
3237
</td>
3338
<td>
3439
{% if release.xz %}
35-
<a href="https://github.com/openslide/{{ package }}/releases/download/v{{ release.version }}/{{ package }}-{{ release.version }}.tar.xz">tar.xz</a>
40+
<a href="https://github.com/openslide/{{ package }}/releases/download/v{{ release.version }}/{{ srcname }}-{{ release.version }}.tar.xz">tar.xz</a>
3641
{% endif %}
3742
</td>
3843
{% if any_gh %}

download/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ openslide/[~4]</pre>
249249
<tr>
250250
<th>Python</th>
251251
<th><a href="https://pypi.org/">PyPI</a></th>
252-
<td></td>
252+
<td><code>python3 -m pip install openslide-bin</code></td>
253253
<td><code>python3 -m pip install openslide-python</code></td>
254254
</tr>
255255
<tr>

0 commit comments

Comments
 (0)