From fab584e358203ef0f4a22b9a00e3ed0e309665a6 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Wed, 9 Oct 2024 18:37:07 +0100 Subject: [PATCH] Changes for 0.3.9. --- .github/workflows/package-tests.yml | 6 ++++-- CHANGES.rst | 27 ++++++++++++++++++++++++++- distlib/__init__.py | 2 +- setup.cfg | 2 ++ 4 files changed, 33 insertions(+), 4 deletions(-) diff --git a/.github/workflows/package-tests.yml b/.github/workflows/package-tests.yml index ef8c500..c23c1e8 100644 --- a/.github/workflows/package-tests.yml +++ b/.github/workflows/package-tests.yml @@ -35,9 +35,9 @@ jobs: python-version: '3.7' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Test with unittest @@ -53,6 +53,8 @@ jobs: env: PYTHONHASHSEED: 0 - name: Upload coverage to Codecov + # Repeated failures of Codecov on macos-12 + # if: ${{ matrix.os != 'macos-12' } uses: codecov/codecov-action@v4 with: flags: unittests diff --git a/CHANGES.rst b/CHANGES.rst index 5556891..cd13ea4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,36 @@ Change log for ``distlib`` -------------------------- -0.3.9 (future) +0.4.0 (future) ~~~~~~~~~~~~~~ Released: Not yet. +0.3.9 +~~~~~ + +Released: 2024-10-09 + +- scripts + + - Merge #215: preload script wrappers on Windows to assist with a pip issue (thanks, + Paul Moore). + + - Fix #220: Remove duplicated newline in shebang of windows launcher (thanks. A2uria). + + - Fix #230: Add handling for cross-compilation environments (thanks, Russell Keith-Magee). + +- util + + - Fix #224: Do not use the absolute path to cache wheel extensions (thanks, Stewart Miles). + +- wheel + + - Fix #222: Support mounting wheels that use extensions without an EXTENSIONS file (thanks, + Stewart Miles). + + - Fix #225: Add support for wheel compatibility with the limited API (thanks, Stewart Miles). + 0.3.8 ~~~~~ diff --git a/distlib/__init__.py b/distlib/__init__.py index a549489..bf0d6c6 100644 --- a/distlib/__init__.py +++ b/distlib/__init__.py @@ -6,7 +6,7 @@ # import logging -__version__ = '0.3.9.dev0' +__version__ = '0.3.9' class DistlibException(Exception): diff --git a/setup.cfg b/setup.cfg index d5e9953..2f55e68 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,8 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Topic :: Software Development project_urls = Documentation = https://distlib.readthedocs.io/