forked from pool/python-virtualenv
- Update to v20.23.0:
# Features - 20.23.0
* Do not install wheel and setuptools seed packages for Python
3.12+. To restore the old behaviour use:
- for wheel use VIRTUALENV_WHEEL=bundle environment variable or
--wheel=bundle CLI flag,
- for setuptools use VIRTUALENV_SETUPTOOLS=bundle environment
variable or --setuptools=bundle CLI flag.
By @chrysle. (#2487)
* 3.12 support - by @gaborbernat. (#2558)
# Bugfixes - 20.23.0
* Prevent PermissionError when using venv creator on systems that
deliver files without user write permission - by @kulikjak.
(#2543)
* Upgrade setuptools to 67.7.2 from 67.6.1 and pip to 23.1.2 from
23.1 - by @szleb. (#2560)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=132
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
%define skip_python2 1
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-virtualenv%{psuffix}
|
||||
Version: 20.22.0
|
||||
Version: 20.23.0
|
||||
Release: 0
|
||||
Summary: Virtual Python Environment builder
|
||||
License: MIT
|
||||
@@ -36,8 +36,8 @@ URL: http://www.virtualenv.org/
|
||||
Source: https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
||||
BuildRequires: %{python_module distlib >= 0.3.6}
|
||||
BuildRequires: %{python_module filelock >= 3.11}
|
||||
BuildRequires: %{python_module hatchling >= 1.14}
|
||||
BuildRequires: %{python_module hatch-vcs >= 0.3}
|
||||
BuildRequires: %{python_module hatchling >= 1.14}
|
||||
BuildRequires: %{python_module importlib-metadata >= 6.4.1 if %python-base < 3.8}
|
||||
BuildRequires: %{python_module importlib_resources >= 1.0 if %python-base < 3.7}
|
||||
BuildRequires: %{python_module pip}
|
||||
@@ -46,11 +46,9 @@ BuildRequires: %{python_module setuptools >= 41.0.0}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-backports.entry_points_selectable >= 1.0.4
|
||||
Requires: python-distlib >= 0.3.6
|
||||
Requires: python-filelock >= 3.11
|
||||
Requires: python-platformdirs >= 3.2
|
||||
Requires: python-setuptools
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
BuildArch: noarch
|
||||
@@ -61,7 +59,6 @@ Requires: python-importlib-metadata >= 6.4.1
|
||||
Requires: python-importlib_resources >= 1.0
|
||||
%endif
|
||||
%if %{with test}
|
||||
BuildRequires: %{python_module backports.entry_points_selectable >= 1.0.4}
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module flaky >= 3}
|
||||
BuildRequires: %{python_module packaging >= 20.0}
|
||||
|
||||
Reference in New Issue
Block a user