- update to 1.2.1:
* Avoid error when terminal width is undetectable on Python < 3.11 * Add --installer option, supporting pip and uv. Added uv extra. * Improve console output and provide -v for dependency installation * Avoid compiling unused bytecode when using pip * Dropped support for Python 3.7 * Fixed invoking outer pip from user site packages * Corrected the minimum pip version required to use an outer pip * Use external pip if available instead of installing, speeds up environment setup with virtualenv slightly and venv significantly. * Stopped injecting wheel as a build dependency automatically, in the case of missing pyproject.toml -- by :user:`webknjaz`. * Use importlib_metadata on Python <3.10.2 for bugfixes not present in those CPython standard libraries (not required when bootstrapping) -- by :user:`GianlucaFicarelli`. - Update to v0.9.0 - Drop remove-unused-import.patch - Add remove-unused-import.patch to work with importlib_metadata OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-build?expand=0&rev=28
This commit is contained in:
parent
ace4ab3762
commit
90e969b309
BIN
build-1.0.3.tar.gz
(Stored with Git LFS)
BIN
build-1.0.3.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
build-1.2.1.tar.gz
Normal file
3
build-1.2.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:571fbbcd187eed0e7af47dd49e8f25ab22fb9cfbde5ed1daea67c5187dad9df6
|
||||||
|
size 47394
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jun 29 12:49:33 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 1.2.1:
|
||||||
|
* Avoid error when terminal width is undetectable on Python <
|
||||||
|
3.11
|
||||||
|
* Add --installer option, supporting pip and uv. Added uv
|
||||||
|
extra.
|
||||||
|
* Improve console output and provide -v for dependency
|
||||||
|
installation
|
||||||
|
* Avoid compiling unused bytecode when using pip
|
||||||
|
* Dropped support for Python 3.7
|
||||||
|
* Fixed invoking outer pip from user site packages
|
||||||
|
* Corrected the minimum pip version required to use an outer
|
||||||
|
pip
|
||||||
|
* Use external pip if available instead of installing, speeds
|
||||||
|
up environment setup with virtualenv slightly and venv
|
||||||
|
significantly.
|
||||||
|
* Stopped injecting wheel as a build dependency automatically,
|
||||||
|
in the case of missing pyproject.toml -- by :user:`webknjaz`.
|
||||||
|
* Use importlib_metadata on Python <3.10.2 for bugfixes not
|
||||||
|
present in those CPython standard libraries (not required
|
||||||
|
when bootstrapping) -- by :user:`GianlucaFicarelli`.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 20 07:50:56 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
Wed Sep 20 07:50:56 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file for package python-build
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-build%{psuffix}
|
Name: python-build%{psuffix}
|
||||||
Version: 1.0.3
|
Version: 1.2.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Simple PEP517 package builder
|
Summary: Simple PEP517 package builder
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -51,7 +51,7 @@ Requires: (python-importlib-metadata >= 0.22 if python-base < 3.8)
|
|||||||
Requires: (python-tomli >= 1.1.0 if python-base < 3.11)
|
Requires: (python-tomli >= 1.1.0 if python-base < 3.11)
|
||||||
Recommends: python-virtualenv >= 20.0.35
|
Recommends: python-virtualenv >= 20.0.35
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module build = %{version}}
|
BuildRequires: %{python_module build = %{version}}
|
||||||
|
Loading…
Reference in New Issue
Block a user