File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,21 @@ Changelog
66next release
77============
88
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 `)
917- Stopped injecting ``wheel `` as a build dependency automatically, in the
1018 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 `)
1224
1325
14261.0.3 (2023-09-06)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44
55[project ]
66name = " build"
7- version = " 1.0.3 "
7+ version = " 1.1.0 "
88description = " A simple, correct Python build frontend"
99readme = " README.md"
1010requires-python = " >= 3.7"
Original file line number Diff line number Diff line change 77from __future__ import annotations
88
99
10- __version__ = '1.0.3 '
10+ __version__ = '1.1.0 '
1111
1212import contextlib
1313import difflib
You can’t perform that action at this time.
0 commit comments