(2025-10-05)
The :file:`reusable-cibuildwheel.yml` workflow has been refactored to be more generic and :file:`ci-cd.yml` now holds all the configuration toggles -- by :user:`webknjaz`.
Related issues and pull requests on GitHub: :issue:`668`.
When building wheels, the source distribution is now passed directly to the
cibuildwheelinvocation -- by :user:`webknjaz`.Related issues and pull requests on GitHub: :issue:`669`.
Builds and tests have been added to
ci-cd.ymlfor arm64 Windows wheels -- by :user:`finnagin`.Related issues and pull requests on GitHub: :issue:`677`.
Started building wheels for CPython 3.14 -- by :user:`kumaraditya303`.
Related issues and pull requests on GitHub: :issue:`681`, :issue:`682`.
Removed
--config-settings=pure-python=falsefrom :file:`requirements/dev.txt`. Developers on CPython still get accelerated builds by default. To explicitly build a pure Python wheel, usepip install -e . --config-settings=pure-python=true-- by :user:`bdraco`.Related issues and pull requests on GitHub: :issue:`687`.
(2025-06-09)
Added deepcopy support to FrozenList -- by :user:`bdraco`.
Related issues and pull requests on GitHub: :issue:`659`.
Fixed an issue where
frozenlistbinary wheels would be built with debugging symbols and line tracing enabled, which significantly impacted performance. Line tracing is now disabled by default and can only be enabled explicitly -- by :user:`bdraco`.This change ensures that production builds are optimized for performance. Developers who need line tracing for debugging purposes can still enable it by:
- Setting the
FROZENLIST_CYTHON_TRACINGenvironment variable - Using the
--config-setting=with-cython-tracing=trueoption with pip
Related issues and pull requests on GitHub: :issue:`660`.
- Setting the
Enabled
PIP_CONSTRAINTenvironment variable in the build configuration to ensure the pinned Cython version fromrequirements/cython.txtis used during wheel builds.Related issues and pull requests on GitHub: :issue:`661`.
(2025-06-03)
No significant changes.
(2025-06-02)
Correctly use
cimportfor includingPyBool_FromLong-- by :user:`lysnikolaou`.Related issues and pull requests on GitHub: :issue:`653`.
Exclude
_frozenlist.cppfrom bdists/wheels -- by :user:`musicinmybrain`.Related issues and pull requests on GitHub: :issue:`649`.
Updated to use Cython 3.1 universally across the build path -- by :user:`lysnikolaou`.
Related issues and pull requests on GitHub: :issue:`654`.
(2025-04-17)
Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package -- by :user:`ajsanchezsanz` and :user:`markgreene74`.
Related commits on GitHub: :commit:`41591f2`.
Implemented support for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
Related issues and pull requests on GitHub: :issue:`618`.
Started building armv7l wheels -- by :user:`bdraco`.
Related issues and pull requests on GitHub: :issue:`642`.
Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package -- by :user:`ajsanchezsanz` and :user:`markgreene74`.
Related commits on GitHub: :commit:`41591f2`.
Started building wheels for the free-threaded build of CPython 3.13 -- by :user:`lysnikolaou`.
Related issues and pull requests on GitHub: :issue:`618`.
The packaging metadata switched to including an SPDX license identifier introduced in PEP 639 -- by :user:`cdce8p`.
Related issues and pull requests on GitHub: :issue:`639`.
GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps -- an action by :user:`webknjaz` that takes into account ABI stability and the exact version of Python runtime.
Related issues and pull requests on GitHub: :issue:`633`.
Organized dependencies into test and lint dependencies so that no unnecessary ones are installed during CI runs -- by :user:`lysnikolaou`.
Related issues and pull requests on GitHub: :issue:`636`.
An incorrect signature of the
__class_getitem__class method has been fixed, adding a missingclass_itemargument under Python 3.8 and older.This change also improves the code coverage of this method that was previously missing -- by :user:`webknjaz`.
Related issues and pull requests on GitHub: :issue:`567`, :issue:`571`.
Rendered issue, PR, and commit links now lead to
frozenlist's repo instead ofyarl's repo.Related issues and pull requests on GitHub: :issue:`573`.
On the :doc:`Contributing docs <contributing/guidelines>` page, a link to the
Towncrier philosophyhas been fixed.Related issues and pull requests on GitHub: :issue:`574`.
A name of a temporary building directory now reflects that it's related to
frozenlist, notyarl.Related issues and pull requests on GitHub: :issue:`573`.
Declared Python 3.13 supported officially in the distribution package metadata.
Related issues and pull requests on GitHub: :issue:`595`.
Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.
Related issues and pull requests on GitHub: :issue:`553`.
Replaced the packaging is replaced from an old-fashioned :file:`setup.py` to an in-tree PEP 517 build backend -- by :user:`webknjaz`.
Whenever the end-users or downstream packagers need to build
frozenlistfrom source (a Git checkout or an sdist), they may pass aconfig_settingsflagpure-python. If this flag is not set, a C-extension will be built and included into the distribution.Here is how this can be done with
pip:$ python3 -m pip install . --config-settings=pure-python=This will also work with
-e | --editable.The same can be achieved via
pypa/build:$ python3 -m build --config-setting=pure-python=Adding
-w | --wheelcan forcepypa/buildproduce a wheel from source directly, as opposed to building ansdistand then building from it.Related issues and pull requests on GitHub: :issue:`560`.
It is now possible to request line tracing in Cython builds using the
with-cython-tracingPEP 517 config setting -- :user:`webknjaz`.This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or downstream packagers.
Here's a usage example:
$ python3 -Im pip install . --config-settings=with-cython-tracing=trueFor editable installs, this setting is on by default. Otherwise, it's off unless requested explicitly.
The following produces C-files required for the Cython coverage plugin to map the measurements back to the PYX-files:
$ python -Im pip install -e .Alternatively, the
FROZENLIST_CYTHON_TRACING=1environment variable can be set to do the same as the PEP 517 config setting.Related issues and pull requests on GitHub: :issue:`560`.
Coverage collection has been implemented for the Cython modules -- by :user:`webknjaz`.
It will also be reported to Codecov from any non-release CI jobs.
Related issues and pull requests on GitHub: :issue:`561`.
A step-by-step :doc:`Release Guide <contributing/release_guide>` guide has been added, describing how to release frozenlist -- by :user:`webknjaz`.
This is primarily targeting the maintainers.
Related issues and pull requests on GitHub: :issue:`563`.
Detailed :doc:`Contributing Guidelines <contributing/guidelines>` on authoring the changelog fragments have been published in the documentation -- by :user:`webknjaz`.
Related issues and pull requests on GitHub: :issue:`564`.
The published source distribution package became buildable under Python 3.12.
- Removed an unused :py:data:`typing.Tuple` import #411
- Dropped Python 3.7 support. #413
- Fixed CI runs when creating a new release, where new towncrier versions fail when the current version section is already present.
- Updated the CI runs to better check for test results and to avoid deprecated syntax. #327
The published source distribution package became buildable under Python 3.11.
- Do not install C sources with binary distributions. #250
- Dropped Python 3.6 support #274
FrozenListnow supports being used as a generic type as per PEP 585, e.g.frozen_int_list: FrozenList[int](requires Python 3.9 or newer). #172- Added support for Python 3.10. #227
- Started shipping platform-specific wheels with the
musltag targeting typical Alpine Linux runtimes. #227 - Started shipping platform-specific arm64 wheels for Apple Silicon. #227
- Provide x86 Windows wheels. #169
- Add support for hashing of a frozen list. #136
- Support Python 3.8 and 3.9.
- Provide wheels for
aarch64,i686,ppc64le,s390xarchitectures on Linux as well asx86_64.
- Dropped support for Python 3.5; only 3.6, 3.7 and 3.8 are supported going forward. #24