File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,21 @@ Changelog
6
6
next release
7
7
============
8
8
9
+ Python 3.7 (past EoL) support will be removed.
10
+
11
+ 1.1.0 (2024-02-29)
12
+ ==================
13
+
14
+ - Use external pip if available instead of installing, speeds up environment
15
+ setup with virtualenv slightly and venv significantly.
16
+ (PR :pr: `736 `)
9
17
- Stopped injecting ``wheel `` as a build dependency automatically, in the
10
18
case of missing ``pyproject.toml `` -- by :user: `webknjaz `.
11
- (:pr: `716 `)
19
+ (PR :pr: `716 `)
20
+ - Use ``importlib_metadata `` on Python <3.10.2 for bugfixes not present in
21
+ those CPython standard libraries (not required when bootstrapping) -- by
22
+ :user: `GianlucaFicarelli `.
23
+ (PR :pr: `693 `, fixes issue :issue: `692 `)
12
24
13
25
14
26
1.0.3 (2023-09-06)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
4
4
5
5
[project ]
6
6
name = " build"
7
- version = " 1.0.3 "
7
+ version = " 1.1.0 "
8
8
description = " A simple, correct Python build frontend"
9
9
readme = " README.md"
10
10
requires-python = " >= 3.7"
Original file line number Diff line number Diff line change 7
7
from __future__ import annotations
8
8
9
9
10
- __version__ = '1.0.3 '
10
+ __version__ = '1.1.0 '
11
11
12
12
import contextlib
13
13
import difflib
You can’t perform that action at this time.
0 commit comments