Skip to content

Commit fab584e

Browse files
committed
Changes for 0.3.9.
1 parent 148fa95 commit fab584e

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

.github/workflows/package-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
python-version: '3.7'
3636

3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- name: Set up Python ${{ matrix.python-version }}
40-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
- name: Test with unittest
@@ -53,6 +53,8 @@ jobs:
5353
env:
5454
PYTHONHASHSEED: 0
5555
- name: Upload coverage to Codecov
56+
# Repeated failures of Codecov on macos-12
57+
# if: ${{ matrix.os != 'macos-12' }
5658
uses: codecov/codecov-action@v4
5759
with:
5860
flags: unittests

CHANGES.rst

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
11
Change log for ``distlib``
22
--------------------------
33

4-
0.3.9 (future)
4+
0.4.0 (future)
55
~~~~~~~~~~~~~~
66

77
Released: Not yet.
88

9+
0.3.9
10+
~~~~~
11+
12+
Released: 2024-10-09
13+
14+
- scripts
15+
16+
- Merge #215: preload script wrappers on Windows to assist with a pip issue (thanks,
17+
Paul Moore).
18+
19+
- Fix #220: Remove duplicated newline in shebang of windows launcher (thanks. A2uria).
20+
21+
- Fix #230: Add handling for cross-compilation environments (thanks, Russell Keith-Magee).
22+
23+
- util
24+
25+
- Fix #224: Do not use the absolute path to cache wheel extensions (thanks, Stewart Miles).
26+
27+
- wheel
28+
29+
- Fix #222: Support mounting wheels that use extensions without an EXTENSIONS file (thanks,
30+
Stewart Miles).
31+
32+
- Fix #225: Add support for wheel compatibility with the limited API (thanks, Stewart Miles).
33+
934
0.3.8
1035
~~~~~
1136

distlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
import logging
88

9-
__version__ = '0.3.9.dev0'
9+
__version__ = '0.3.9'
1010

1111

1212
class DistlibException(Exception):

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ classifiers =
2424
Programming Language :: Python :: 3.9
2525
Programming Language :: Python :: 3.10
2626
Programming Language :: Python :: 3.11
27+
Programming Language :: Python :: 3.12
28+
Programming Language :: Python :: 3.13
2729
Topic :: Software Development
2830
project_urls =
2931
Documentation = https://distlib.readthedocs.io/

0 commit comments

Comments
 (0)