Accepting request 949893 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/949893 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=109
This commit is contained in:
parent
d893d85d25
commit
1d6523f832
@ -1,3 +1,60 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jan 29 17:39:55 UTC 2022 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* update copyright year
|
||||||
|
|
||||||
|
- update to version 20.13.0:
|
||||||
|
* Features
|
||||||
|
+ Add downloaded wheel information in the relevant JSON embed file
|
||||||
|
to prevent additional downloads of the same wheel. - by
|
||||||
|
@mayeut. (#2268)
|
||||||
|
* Bugfixes
|
||||||
|
+ Fix AttributeError: 'bool' object has no attribute 'error' when
|
||||||
|
creating a Python 2.x virtualenv on macOS - by moreati. (#2269)
|
||||||
|
+ Fix PermissionError: [Errno 1] Operation not permitted when
|
||||||
|
creating a Python 2.x virtualenv on macOS/arm64 - by
|
||||||
|
moreati. (#2271)
|
||||||
|
|
||||||
|
- changes from version 20.12.1:
|
||||||
|
* Bugfixes
|
||||||
|
+ Try using previous updates of pip, setuptools & wheel when
|
||||||
|
inside an update grace period rather than always falling back to
|
||||||
|
embedded wheels - by @mayeut. (#2265)
|
||||||
|
+ New patch versions of pip, setuptools & wheel are now returned
|
||||||
|
in the expected timeframe. - by @mayeut. (#2266)
|
||||||
|
+ Manual upgrades of pip, setuptools & wheel are not discarded by
|
||||||
|
a periodic update - by @mayeut. (#2267)
|
||||||
|
|
||||||
|
- changes from version 20.12.0:
|
||||||
|
* Features
|
||||||
|
+ Sign the python2 exe on Darwin arm64 - by @tmspicer. (#2233)
|
||||||
|
* Bugfixes
|
||||||
|
+ Fix --download option - by @mayeut. (#2120)
|
||||||
|
+ Ugrade embedded setuptools to 60.2.0 from 60.1.1 - by
|
||||||
|
@gaborbernat. (#2263)
|
||||||
|
|
||||||
|
- changes from version 20.11.2:
|
||||||
|
* Bugfixes
|
||||||
|
+ Fix installation of pinned versions of pip, setuptools & wheel -
|
||||||
|
by @mayeut. (#2203)
|
||||||
|
|
||||||
|
- changes from version 20.11.1:
|
||||||
|
* Bugfixes
|
||||||
|
+ Bump embed setuptools to 60.1.1 from 60.1.0 - by
|
||||||
|
@gaborbernat. (#2258)
|
||||||
|
|
||||||
|
- changes from version 20.11.0:
|
||||||
|
* Features
|
||||||
|
+ Avoid deprecation warning from py-filelock argument - by
|
||||||
|
@ofek. (#2237)
|
||||||
|
+ Upgrade embedded setuptools to 61.1.0 from 58.3.0 - by
|
||||||
|
@gaborbernat. (#2240)
|
||||||
|
+ Drop the runtime dependency of backports.entry-points-selectable
|
||||||
|
- by @hroncok. (#2246)
|
||||||
|
+ Fish: PATH variables should not be quoted when being set - by
|
||||||
|
@hroncok. (#2248)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 6 09:58:59 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
Mon Dec 6 09:58:59 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 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
|
||||||
@ -28,7 +28,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-virtualenv%{psuffix}
|
Name: python-virtualenv%{psuffix}
|
||||||
Version: 20.10.0
|
Version: 20.13.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Virtual Python Environment builder
|
Summary: Virtual Python Environment builder
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -49,15 +49,15 @@ Requires: python-filelock >= 3.0.0
|
|||||||
Requires: python-platformdirs >= 2
|
Requires: python-platformdirs >= 2
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
Requires: python-six >= 1.9.0
|
Requires: python-six >= 1.9.0
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun):update-alternatives
|
||||||
|
BuildArch: noarch
|
||||||
%if 0%{python_version_nodots} < 38
|
%if 0%{python_version_nodots} < 38
|
||||||
Requires: python-importlib-metadata >= 0.12
|
Requires: python-importlib-metadata >= 0.12
|
||||||
%endif
|
%endif
|
||||||
%if 0%{python_version_nodots} < 37
|
%if 0%{python_version_nodots} < 37
|
||||||
Requires: python-importlib_resources >= 1.0
|
Requires: python-importlib_resources >= 1.0
|
||||||
%endif
|
%endif
|
||||||
Requires(post): update-alternatives
|
|
||||||
Requires(postun):update-alternatives
|
|
||||||
BuildArch: noarch
|
|
||||||
%ifpython2
|
%ifpython2
|
||||||
Requires: python-contextlib2 >= 0.6.0
|
Requires: python-contextlib2 >= 0.6.0
|
||||||
Requires: python-pathlib2 >= 2.3.3
|
Requires: python-pathlib2 >= 2.3.3
|
||||||
@ -75,7 +75,6 @@ BuildRequires: %{python_module pytest-mock >= 2.0.0}
|
|||||||
BuildRequires: %{python_module pytest-timeout >= 1.3.4}
|
BuildRequires: %{python_module pytest-timeout >= 1.3.4}
|
||||||
BuildRequires: ca-certificates
|
BuildRequires: ca-certificates
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -115,7 +114,7 @@ rm -r tests/unit/activation
|
|||||||
%check
|
%check
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
export LANG="en_US.UTF8"
|
export LANG="en_US.UTF8"
|
||||||
export PIP_CERT="/etc/ssl/ca-bundle.pem"
|
export PIP_CERT="%{_sysconfdir}/ssl/ca-bundle.pem"
|
||||||
export PYTHONPATH=$PWD/src
|
export PYTHONPATH=$PWD/src
|
||||||
# online tests downloads from pypi
|
# online tests downloads from pypi
|
||||||
donttest="test_seed_link_via_app_data"
|
donttest="test_seed_link_via_app_data"
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:576d05b46eace16a9c348085f7d0dc8ef28713a2cabaa1cf0aea41e8f12c9218
|
|
||||||
size 9007218
|
|
3
virtualenv-20.13.0.tar.gz
Normal file
3
virtualenv-20.13.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d8458cf8d59d0ea495ad9b34c2599487f8a7772d796f9910858376d1600dd2dd
|
||||||
|
size 9957090
|
Loading…
Reference in New Issue
Block a user