Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ jobs:
strategy:
matrix:
os:
- android-arm
- android-intel
- ios
- linux-arm
- linux-intel
- macos-arm
- macos-intel
- pyodide
- windows-arm
- windows-intel
include:
Expand All @@ -50,9 +51,6 @@ jobs:
# macos-14+ (including latest) are ARM64 runners
runs-on: macos-latest
archs: auto,universal2
- os: pyodide
runs-on: ubuntu-latest
platform: pyodide
- os: windows-arm
runs-on: windows-11-arm
- os: windows-intel
Expand Down Expand Up @@ -87,7 +85,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
name: maxminddb-whl-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

build_sdist:
Expand Down
14 changes: 14 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
History
-------

2.8.2 (2025-07-25)
++++++++++++++++++

* Pyodide binary wheels will no longer be built by default. It is not possible to
upload these to PyPI currently. We may consider reenabling them and putting them
on the GitHub Releases page in the future if there is interest.

2.8.1 (2025-07-25)
++++++++++++++++++

* When upgrading to ``cibuildwheel`` 3.0.0, we inadvertently changed the artifact
names, causing the wheels to not be uploaded to PyPI. This release fixes that.
There are no other code changes. Report by David Hotham. GitHub #225.

2.8.0 (2025-07-25)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion maxminddb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def open_database(


__title__ = "maxminddb"
__version__ = "2.8.0"
__version__ = "2.8.2"
__author__ = "Gregory Oschwald"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2025 MaxMind, Inc."
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "maxminddb"
version = "2.8.0"
version = "2.8.2"
description = "Reader for the MaxMind DB format"
authors = [
{name = "Gregory Oschwald", email = "goschwald@maxmind.com"},
Expand Down
Loading