- Update to v20.24.5:
- Fix brew cannot copy by @gaborbernat in #2640 - Test with 3.12 rc by @gaborbernat in #2641 - Upgrade setuptools by @gaborbernat in #2642 - GitHub Actions: Add PyPy 3.10 to testing by @cclauss in #2638 - 20.24.4: - Fix typo found by codespell by @DimitriPapadopoulos in #2624 - Updating extend.rst typo by @sagardesai1 in #2626 - 20.24.3: - Update compatibility docs by @jugmac00 in #2618 - fix ResourceWarning on process exit (#2472) by @sigma67 in #2617 - added scripts in tasks directory to sdist on build (#2610) by @sigma67 in #2620 - Bump wheel by @gaborbernat in #2622 - 20.24.2: - Bump pip and wheel by @gaborbernat in #2614 - 20.24.1: - Upgrade pip by @arielkirkwood in #2611 - 20.24.0: - Fix the CI by @gaborbernat in #2593 - Quickstart guide by @AlvesJorge in #2599 - Updated CLI documentation with config file name by @nathanczh in #2602 - Exclude dependabot and pre-commit ci from release notes by @gaborbernat in #2603 - Export VIRTUAL_ENV_PROMPT in activation scripts (#2194) by @jimporter in #2606 - Upgrade setuptools by @gaborbernat in #2607 - 20.23.1: - Bump pypa/gh-action-pypi-publish from 1.8.5 to 1.8.6 by @dependabot in #2566 - feat: ✨ update and simplify nushell activation by @melMass in #2572 - Fix deprecation warning by @jugmac00 in #2575 - Replace unmaintained pytest-freezegun by @jugmac00 in #2576 - Update cli_interface.rst by @uberFoo in #2586 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-virtualenv?expand=0&rev=137
This commit is contained in:
parent
3403a890c5
commit
01cc60728c
@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 3 06:39:58 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
|
||||||
|
|
||||||
|
- Update to v20.24.5:
|
||||||
|
- Fix brew cannot copy by @gaborbernat in #2640
|
||||||
|
- Test with 3.12 rc by @gaborbernat in #2641
|
||||||
|
- Upgrade setuptools by @gaborbernat in #2642
|
||||||
|
- GitHub Actions: Add PyPy 3.10 to testing by @cclauss in #2638
|
||||||
|
- 20.24.4:
|
||||||
|
- Fix typo found by codespell by @DimitriPapadopoulos in #2624
|
||||||
|
- Updating extend.rst typo by @sagardesai1 in #2626
|
||||||
|
- 20.24.3:
|
||||||
|
- Update compatibility docs by @jugmac00 in #2618
|
||||||
|
- fix ResourceWarning on process exit (#2472) by @sigma67 in #2617
|
||||||
|
- added scripts in tasks directory to sdist on build (#2610) by @sigma67 in #2620
|
||||||
|
- Bump wheel by @gaborbernat in #2622
|
||||||
|
- 20.24.2:
|
||||||
|
- Bump pip and wheel by @gaborbernat in #2614
|
||||||
|
- 20.24.1:
|
||||||
|
- Upgrade pip by @arielkirkwood in #2611
|
||||||
|
- 20.24.0:
|
||||||
|
- Fix the CI by @gaborbernat in #2593
|
||||||
|
- Quickstart guide by @AlvesJorge in #2599
|
||||||
|
- Updated CLI documentation with config file name by @nathanczh in #2602
|
||||||
|
- Exclude dependabot and pre-commit ci from release notes by @gaborbernat in #2603
|
||||||
|
- Export VIRTUAL_ENV_PROMPT in activation scripts (#2194) by @jimporter in #2606
|
||||||
|
- Upgrade setuptools by @gaborbernat in #2607
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jun 30 15:40:31 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
Fri Jun 30 15:40:31 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
@ -28,27 +28,27 @@
|
|||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-virtualenv%{psuffix}
|
Name: python-virtualenv%{psuffix}
|
||||||
Version: 20.23.1
|
Version: 20.24.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Virtual Python Environment builder
|
Summary: Virtual Python Environment builder
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.virtualenv.org/
|
URL: http://www.virtualenv.org/
|
||||||
Source: https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module distlib >= 0.3.6}
|
BuildRequires: %{python_module distlib >= 0.3.7}
|
||||||
BuildRequires: %{python_module filelock >= 3.11}
|
BuildRequires: %{python_module filelock >= 3.12.2}
|
||||||
BuildRequires: %{python_module hatch-vcs >= 0.3}
|
BuildRequires: %{python_module hatch-vcs >= 0.3}
|
||||||
BuildRequires: %{python_module hatchling >= 1.14}
|
BuildRequires: %{python_module hatchling >= 1.14}
|
||||||
BuildRequires: %{python_module importlib-metadata >= 6.4.1 if %python-base < 3.8}
|
BuildRequires: %{python_module importlib-metadata >= 6.6 if %python-base < 3.8}
|
||||||
BuildRequires: %{python_module importlib_resources >= 1.0 if %python-base < 3.7}
|
BuildRequires: %{python_module importlib_resources >= 1.0 if %python-base < 3.7}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module platformdirs >= 3.2}
|
BuildRequires: %{python_module platformdirs}
|
||||||
BuildRequires: %{python_module setuptools >= 41.0.0}
|
BuildRequires: %{python_module setuptools >= 41.0.0}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-distlib >= 0.3.6
|
Requires: python-distlib >= 0.3.7
|
||||||
Requires: python-filelock >= 3.11
|
Requires: python-filelock >= 3.12.2
|
||||||
Requires: python-platformdirs >= 3.2
|
Requires: python-platformdirs
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun):update-alternatives
|
Requires(postun):update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8ff19a38c1021c742148edc4f81cb43d7f8c6816d2ede2ab72af5b84c749ade1
|
|
||||||
size 6619074
|
|
3
virtualenv-20.24.5.tar.gz
Normal file
3
virtualenv-20.24.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e8361967f6da6fbdf1426483bfe9fca8287c242ac0bc30429905721cefbff752
|
||||||
|
size 7119883
|
Loading…
Reference in New Issue
Block a user