File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,18 @@ Changelog
33+++++++++
44
55
6- Unreleased
7- ==========
6+ 1.2.0 (2024-03-27)
7+ ==================
88
9- - Dropped support for Python 3.7 (PR :pr: `743 `)
9+ - Add ``--installer `` option, supporting ``pip `` and ``uv ``. Added ``uv ``
10+ extra.
11+ (PR :pr: `751 `)
12+ - Improve console output and provide ``-v `` for dependency installation
13+ (PR :pr: `749 `)
14+ - Avoid compiling unused bytecode when using ``pip ``
15+ (PR :pr: `752 `)
16+ - Dropped support for Python 3.7
17+ (PR :pr: `743 `)
1018
1119
12201.1.1 (2024-02-29)
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ build-backend = "flit_core.buildapi"
44
55[project ]
66name = " build"
7- version = " 1.1.1"
87description = " A simple, correct Python build frontend"
98readme = " README.md"
109requires-python = " >= 3.8"
@@ -31,7 +30,8 @@ urls.changelog = "https://build.pypa.io/en/stable/changelog.html"
3130urls.homepage = " https://build.pypa.io"
3231urls.issues = " https://github.com/pypa/build/issues"
3332urls.source = " https://github.com/pypa/build"
34-
33+ # Version read from __version__ field in __init__.py by Flit
34+ dynamic = [" version" ]
3535dependencies = [
3636 " packaging >= 19.1" ,
3737 " pyproject_hooks" ,
Original file line number Diff line number Diff line change 1818from ._util import check_dependency
1919
2020
21- __version__ = '1.1.1 '
21+ __version__ = '1.2.0 '
2222
2323__all__ = [
2424 '__version__' ,
You can’t perform that action at this time.
0 commit comments