File tree Expand file tree Collapse file tree 4 files changed +33
-4
lines changed Expand file tree Collapse file tree 4 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 35
35
python-version : ' 3.7'
36
36
37
37
steps :
38
- - uses : actions/checkout@v3
38
+ - uses : actions/checkout@v4
39
39
- name : Set up Python ${{ matrix.python-version }}
40
- uses : actions/setup-python@v4
40
+ uses : actions/setup-python@v5
41
41
with :
42
42
python-version : ${{ matrix.python-version }}
43
43
- name : Test with unittest
53
53
env :
54
54
PYTHONHASHSEED : 0
55
55
- name : Upload coverage to Codecov
56
+ # Repeated failures of Codecov on macos-12
57
+ # if: ${{ matrix.os != 'macos-12' }
56
58
uses : codecov/codecov-action@v4
57
59
with :
58
60
flags : unittests
Original file line number Diff line number Diff line change 1
1
Change log for ``distlib ``
2
2
--------------------------
3
3
4
- 0.3.9 (future)
4
+ 0.4.0 (future)
5
5
~~~~~~~~~~~~~~
6
6
7
7
Released: Not yet.
8
8
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
+
9
34
0.3.8
10
35
~~~~~
11
36
Original file line number Diff line number Diff line change 6
6
#
7
7
import logging
8
8
9
- __version__ = '0.3.9.dev0 '
9
+ __version__ = '0.3.9'
10
10
11
11
12
12
class DistlibException (Exception ):
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ classifiers =
24
24
Programming Language :: Python :: 3.9
25
25
Programming Language :: Python :: 3.10
26
26
Programming Language :: Python :: 3.11
27
+ Programming Language :: Python :: 3.12
28
+ Programming Language :: Python :: 3.13
27
29
Topic :: Software Development
28
30
project_urls =
29
31
Documentation = https://distlib.readthedocs.io/
You can’t perform that action at this time.
0 commit comments