Sync from SUSE:SLFO:Main python-virtualenv revision ddd009def331cdf82b2db856fa5dbfe2

This commit is contained in:
Adrian Schröter 2024-09-25 17:18:30 +02:00
parent 5b5237e80f
commit 727334f71d
4 changed files with 141 additions and 60 deletions

View File

@ -1,3 +1,94 @@
-------------------------------------------------------------------
Sat Jun 29 12:43:58 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 20.26.3:
* Bump embeded wheels
-------------------------------------------------------------------
Mon Jun 10 08:58:41 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 20.26.2:
* virtualenv.pyz no longer fails when zipapp path contains a
symlink
* Fix bad return code from activate.sh if hashing is disabled
-------------------------------------------------------------------
Sun May 12 12:26:09 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
- Update to version 20.26.1:
* No Linux related change.
- Changes from version 20.26.0:
* allow builtin discovery to discover specific interpreters
(e.g. python3.12) given an unspecific spec (e.g. python3) -
(gh#pypa/virtualenv#2709)
-------------------------------------------------------------------
Sat Apr 20 07:42:33 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update update 20.25.3:
* Python 3.13.0a6 renamed pathmod to parser
* Upgrade embedded wheels
-------------------------------------------------------------------
Tue Feb 27 18:13:43 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Update to 20.25.1
* Upgrade embedded wheels:
* Avoid importing contextlib in _virtualenv #2688
-------------------------------------------------------------------
Fri Jan 5 13:24:46 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Update to 20.25.0
* Allow platformdirs v4 by @alex in #2664
* Upgrade embedded wheels
- Drop fix-tests-hookimpls.patch
- Update requirements
- Update test execution: Remove obsolete hacks, don't build again
on test flavor. Accomodate changed behavior with bundled
setuptools on Python 3.12
- Conflict with setuptools_scm for tests gh#pypa/virtualenv#2668
-------------------------------------------------------------------
Tue Oct 3 07:10:17 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- Add fix-tests-hookimpls.patch to fix tests with latest pytest in
Factory.
-------------------------------------------------------------------
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>
- Update to v20.23.1
* update and simplify nushell activation script
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 22 08:32:57 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com> Mon May 22 08:32:57 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>

View File

@ -1,7 +1,7 @@
# #
# spec file # spec file for package python-virtualenv
# #
# 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
@ -24,51 +24,46 @@
%define psuffix %{nil} %define psuffix %{nil}
%bcond_with test %bcond_with test
%endif %endif
# there is no platformdirs for python2 on any of the target distributions
%define skip_python2 1
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-virtualenv%{psuffix} Name: python-virtualenv%{psuffix}
Version: 20.23.0 Version: 20.26.3
Release: 0 Release: 0
Summary: Virtual Python Environment builder Summary: Virtual Python Environment builder
License: MIT License: MIT
URL: http://www.virtualenv.org/ URL: https://virtualenv.pypa.io/
# SourceRepository: https://github.com/pypa/virtualenv
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 base >= 3.7}
BuildRequires: %{python_module filelock >= 3.11}
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} BuildRequires: %{python_module pip}
BuildRequires: %{python_module platformdirs >= 3.2}
BuildRequires: %{python_module setuptools >= 41.0.0}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-distlib >= 0.3.6 %if !%{with test}
Requires: python-filelock >= 3.11 # Don't install the build requirements during testing, see setuptools_scm comment below
Requires: python-platformdirs >= 3.2 BuildRequires: %{python_module hatch-vcs >= 0.3}
BuildRequires: %{python_module hatchling >= 1.17.1}
BuildRequires: fdupes
%else
# Conflict with setuptools_scm giving a warning, https://github.com/pypa/virtualenv/issues/2668
BuildConflicts: %{python_module setuptools_scm}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module flaky >= 3.7}
BuildRequires: %{python_module packaging >= 23.1}
BuildRequires: %{python_module pytest >= 7.4}
BuildRequires: %{python_module pytest-env >= 0.8.2}
BuildRequires: %{python_module pytest-mock >= 3.11.1}
BuildRequires: %{python_module pytest-timeout >= 2.1}
BuildRequires: %{python_module setuptools >= 68}
BuildRequires: %{python_module time-machine >= 2.10}
BuildRequires: %{python_module virtualenv = %{version}}
%endif
Requires: (python-distlib >= 0.3.7 with python-distlib < 1)
Requires: (python-filelock >= 3.12.2 with python-filelock < 4)
Requires: (python-platformdirs >= 3.9.1 with python-platformdirs < 5)
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun): update-alternatives
BuildArch: noarch BuildArch: noarch
%if 0%{python_version_nodots} < 38 %if 0%{python_version_nodots} < 38
Requires: python-importlib-metadata >= 6.4.1 Requires: python-importlib-metadata >= 6.6
%endif
%if 0%{python_version_nodots} < 37
Requires: python-importlib_resources >= 1.0
%endif
%if %{with test}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module flaky >= 3}
BuildRequires: %{python_module packaging >= 20.0}
BuildRequires: %{python_module pytest >= 4.0.0}
BuildRequires: %{python_module pytest-env >= 0.6.2}
BuildRequires: %{python_module pytest-freezegun >= 0.4.1}
BuildRequires: %{python_module pytest-mock >= 2.0.0}
BuildRequires: %{python_module pytest-timeout >= 1.3.4}
BuildRequires: %{python_module time-machine}
BuildRequires: ca-certificates
%endif %endif
%python_subpackages %python_subpackages
@ -96,41 +91,36 @@ libraries either).
# Dependencies on all those shells are too cumbersome. # Dependencies on all those shells are too cumbersome.
rm -r tests/unit/activation rm -r tests/unit/activation
%if !%{with test}
%build %build
%pyproject_wheel %pyproject_wheel
%install %install
%pyproject_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
rm %{buildroot}%{_bindir}/virtualenv
%else
%python_clone -a %{buildroot}%{_bindir}/virtualenv %python_clone -a %{buildroot}%{_bindir}/virtualenv
%endif %endif
%check
%if %{with test} %if %{with test}
export LANG="en_US.UTF8" %check
export PIP_CERT="%{_sysconfdir}/ssl/ca-bundle.pem"
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"
# gh#pypa/virtualenv!2431 # fails on python312 because it cannot find setuptools and wheel https://virtualenv.pypa.io/en/latest/changelog.html#features-20-23-0
donttest+=" or test_py_pyc_missing" python312_extratest=" or test_can_build_c_extensions"
%pytest -k "not ($donttest)" %pytest -k "not ($donttest ${$python_extratest})"
# test the special case with the bundles (for all flavors)
# Uninstall everything to avoid errors of files not being packaged export VIRTUALENV_SETUPTOOLS=bundle
%python_expand rm -r %{buildroot}%{$python_sitelib} export VIRTUALENV_WHEEL=bundle
%pytest -k "${python312_extratest:4}"
%endif %endif
%if !%{with test}
%post %post
%python_install_alternative virtualenv %python_install_alternative virtualenv
%postun %postun
%python_uninstall_alternative virtualenv %python_uninstall_alternative virtualenv
%if !%{with test}
%files %{python_files} %files %{python_files}
%license LICENSE %license LICENSE
%doc README.md %doc README.md

BIN
virtualenv-20.23.0.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
virtualenv-20.26.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.