Skip to content

Commit

Permalink
Changes for 0.3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsajip committed Oct 9, 2024
1 parent 148fa95 commit fab584e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/package-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
27 changes: 26 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
~~~~~

Expand Down
2 changes: 1 addition & 1 deletion distlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
import logging

__version__ = '0.3.9.dev0'
__version__ = '0.3.9'


class DistlibException(Exception):
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit fab584e

Please sign in to comment.