Skip to content

Commit 48e920c

Browse files
authored
Merge pull request #226 from maxmind/greg/fix-wheel-release
Upload binary wheels to PyPI again
2 parents 51d48ff + 4c4c4f5 commit 48e920c

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ jobs:
1919
strategy:
2020
matrix:
2121
os:
22+
- android-arm
23+
- android-intel
2224
- ios
2325
- linux-arm
2426
- linux-intel
2527
- macos-arm
2628
- macos-intel
27-
- pyodide
2829
- windows-arm
2930
- windows-intel
3031
include:
@@ -50,9 +51,6 @@ jobs:
5051
# macos-14+ (including latest) are ARM64 runners
5152
runs-on: macos-latest
5253
archs: auto,universal2
53-
- os: pyodide
54-
runs-on: ubuntu-latest
55-
platform: pyodide
5654
- os: windows-arm
5755
runs-on: windows-11-arm
5856
- os: windows-intel
@@ -87,7 +85,7 @@ jobs:
8785

8886
- uses: actions/upload-artifact@v4
8987
with:
90-
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
88+
name: maxminddb-whl-${{ matrix.os }}-${{ strategy.job-index }}
9189
path: ./wheelhouse/*.whl
9290

9391
build_sdist:

HISTORY.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
History
44
-------
55

6+
2.8.2 (2025-07-25)
7+
++++++++++++++++++
8+
9+
* Pyodide binary wheels will no longer be built by default. It is not possible to
10+
upload these to PyPI currently. We may consider reenabling them and putting them
11+
on the GitHub Releases page in the future if there is interest.
12+
13+
2.8.1 (2025-07-25)
14+
++++++++++++++++++
15+
16+
* When upgrading to ``cibuildwheel`` 3.0.0, we inadvertently changed the artifact
17+
names, causing the wheels to not be uploaded to PyPI. This release fixes that.
18+
There are no other code changes. Report by David Hotham. GitHub #225.
19+
620
2.8.0 (2025-07-25)
721
++++++++++++++++++
822

maxminddb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def open_database(
8888

8989

9090
__title__ = "maxminddb"
91-
__version__ = "2.8.0"
91+
__version__ = "2.8.2"
9292
__author__ = "Gregory Oschwald"
9393
__license__ = "Apache License, Version 2.0"
9494
__copyright__ = "Copyright 2013-2025 MaxMind, Inc."

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "maxminddb"
3-
version = "2.8.0"
3+
version = "2.8.2"
44
description = "Reader for the MaxMind DB format"
55
authors = [
66
{name = "Gregory Oschwald", email = "[email protected]"},

0 commit comments

Comments
 (0)