Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-micropipenv for openSUSE:Factory checked in at 2026-04-11 23:13:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-micropipenv (Old) and /work/SRC/openSUSE:Factory/.python-micropipenv.new.21863 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-micropipenv" Sat Apr 11 23:13:33 2026 rev:4 rq:1346097 version:1.10.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-micropipenv/python-micropipenv.changes 2025-06-10 09:10:09.967540970 +0200 +++ /work/SRC/openSUSE:Factory/.python-micropipenv.new.21863/python-micropipenv.changes 2026-04-11 23:13:47.260889377 +0200 @@ -1,0 +2,19 @@ +Sat Apr 11 18:01:02 UTC 2026 - Dirk Müller <[email protected]> + +- update to 1.10.0: + * Test with Python 3.14 + * Improved handling of file:// URIs in tests + * Made detection of editable installs in tests more universal + * Type checker configuration + * Python 3.8 and pip 19 from CI + * Support for Poetry 2.0 + * Test with pip=24.3.1 + * Test with Python 3.13 + * Test with pip=24.2 + * Support for `[[tool.poetry.source]]` without any URL + * Terminal condition for possible endless loops in the + implementation of default/devel package groups + * Implementation of default/devel package groups +- add pip-version-optional.patch + +------------------------------------------------------------------- Old: ---- micropipenv-1.6.0.tar.gz New: ---- micropipenv-1.10.0.tar.gz pip-version-optional.patch ----------(New B)---------- New: * Implementation of default/devel package groups - add pip-version-optional.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-micropipenv.spec ++++++ --- /var/tmp/diff_new_pack.oOnuFW/_old 2026-04-11 23:13:47.744909360 +0200 +++ /var/tmp/diff_new_pack.oOnuFW/_new 2026-04-11 23:13:47.748909525 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-micropipenv # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,16 @@ %define modname micropipenv %bcond_without libalternatives Name: python-micropipenv -Version: 1.6.0 +Version: 1.10.0 Release: 0 Summary: Convert various requirements-type files to use with pip-tools License: LGPL-3.0-or-later Group: Development/Languages/Python URL: https://github.com/thoth-station/micropipenv Source: https://github.com/thoth-station/%{modname}/archive/refs/tags/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz +Patch1: pip-version-optional.patch BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools >= 56.0.0} BuildRequires: %{python_module wheel} BuildRequires: alts BuildRequires: fdupes ++++++ micropipenv-1.6.0.tar.gz -> micropipenv-1.10.0.tar.gz ++++++ ++++ 6055 lines of diff (skipped) ++++++ pip-version-optional.patch ++++++ --- micropipenv-1.10.0/tests/test_micropipenv.py +++ micropipenv-1.10.0/tests/test_micropipenv.py @@ -45,7 +45,7 @@ BIN_DIR = "Scripts" if WIN else "bin" SP_DIR = ("lib", "site-packages") if WIN else ("lib", "python*", "site-packages") PY_LE_39 = sys.version_info[:2] <= (3, 9) -MANYLINUX_2014 = PIP_VERSION.major >= 19 and PIP_VERSION.minor >= 3 +MANYLINUX_2014 = PIP_VERSION and PIP_VERSION.major >= 19 and PIP_VERSION.minor >= 3 @contextmanager @@ -213,7 +213,7 @@ @pytest.mark.online @pytest.mark.skipif(WIN, reason="Fails to remove .git folder on Windows") @pytest.mark.skipif( - PIP_VERSION.major < 21, + PIP_VERSION and PIP_VERSION.major < 21, reason="Old pip versions do not work with new setuptools and deprecated setup.py develop command", ) def test_install_pipenv_vcs_editable(venv):
