Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-hatch for openSUSE:Factory checked in at 2025-04-16 20:41:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-hatch (Old) and /work/SRC/openSUSE:Factory/.python-hatch.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hatch" Wed Apr 16 20:41:33 2025 rev:16 rq:1269788 version:1.14.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-hatch/python-hatch.changes 2024-12-19 21:42:39.797738283 +0100 +++ /work/SRC/openSUSE:Factory/.python-hatch.new.30101/python-hatch.changes 2025-04-20 20:07:41.796425086 +0200 @@ -1,0 +2,7 @@ +Wed Apr 16 07:11:55 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to 1.14.1 + * Remove uses of the deprecated --no-python-version-warning + flag when using pip + +------------------------------------------------------------------- Old: ---- hatch-v1.14.0.tar.gz New: ---- hatch-v1.14.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-hatch.spec ++++++ --- /var/tmp/diff_new_pack.amyXn2/_old 2025-04-20 20:07:42.352448455 +0200 +++ /var/tmp/diff_new_pack.amyXn2/_new 2025-04-20 20:07:42.356448624 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-hatch # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,7 +26,7 @@ %endif %{?sle15_python_module_pythons} Name: python-hatch%{psuffix} -Version: 1.14.0 +Version: 1.14.1 Release: 0 Summary: Modern, extensible Python project management License: MIT ++++++ hatch-v1.14.0.tar.gz -> hatch-v1.14.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/backend/tests/downstream/integrate.py new/hatch-hatch-v1.14.1/backend/tests/downstream/integrate.py --- old/hatch-hatch-v1.14.0/backend/tests/downstream/integrate.py 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/backend/tests/downstream/integrate.py 2025-04-07 06:13:52.000000000 +0200 @@ -140,7 +140,6 @@ 'download', '-q', '--disable-pip-version-check', - '--no-python-version-warning', '-d', links_dir, os.path.join(links_dir, os.listdir(links_dir)[0]), @@ -230,7 +229,6 @@ 'install', '-q', '--disable-pip-version-check', - '--no-python-version-warning', '--find-links', links_dir, '--no-deps', @@ -243,7 +241,6 @@ 'install', '-q', '--disable-pip-version-check', - '--no-python-version-warning', repo_dir, ]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/docs/history/hatch.md new/hatch-hatch-v1.14.1/docs/history/hatch.md --- old/hatch-hatch-v1.14.0/docs/history/hatch.md 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/docs/history/hatch.md 2025-04-07 06:13:52.000000000 +0200 @@ -8,6 +8,12 @@ ## Unreleased +## [1.14.1](https://github.com/pypa/hatch/releases/tag/hatch-v1.14.1) - 2025-04-07 ## {: #hatch-v1.14.1 } + +***Fixed:*** + +- Remove uses of the deprecated `--no-python-version-warning` flag when using pip + ## [1.14.0](https://github.com/pypa/hatch/releases/tag/hatch-v1.14.0) - 2024-12-16 ## {: #hatch-v1.14.0 } ***Added:*** diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/pyproject.toml new/hatch-hatch-v1.14.1/pyproject.toml --- old/hatch-hatch-v1.14.0/pyproject.toml 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/pyproject.toml 2025-04-07 06:13:52.000000000 +0200 @@ -52,7 +52,7 @@ "tomli-w>=1.0", "tomlkit>=0.11.1", "userpath~=1.7", - "uv>=0.1.35", + "uv>=0.5.23", "virtualenv>=20.26.6", "zstandard<1", ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/src/hatch/cli/application.py new/hatch-hatch-v1.14.1/src/hatch/cli/application.py --- old/hatch-hatch-v1.14.0/src/hatch/cli/application.py 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/src/hatch/cli/application.py 2025-04-07 06:13:52.000000000 +0200 @@ -262,7 +262,7 @@ pip_command = [sys.executable, '-u', '-m', 'pip'] - pip_command.extend(['install', '--disable-pip-version-check', '--no-python-version-warning']) + pip_command.extend(['install', '--disable-pip-version-check']) # Default to -1 verbosity add_verbosity_flag(pip_command, self.verbosity, adjustment=-1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/src/hatch/env/plugin/interface.py new/hatch-hatch-v1.14.1/src/hatch/env/plugin/interface.py --- old/hatch-hatch-v1.14.0/src/hatch/env/plugin/interface.py 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/src/hatch/env/plugin/interface.py 2025-04-07 06:13:52.000000000 +0200 @@ -896,7 +896,7 @@ A convenience method for constructing a [`pip install`](https://pip.pypa.io/en/stable/cli/pip_install/) command with the given verbosity. The default verbosity is set to one less than Hatch's verbosity. """ - command = ['python', '-u', '-m', 'pip', 'install', '--disable-pip-version-check', '--no-python-version-warning'] + command = ['python', '-u', '-m', 'pip', 'install', '--disable-pip-version-check'] # Default to -1 verbosity add_verbosity_flag(command, self.verbosity, adjustment=-1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/tests/backend/dep/test_core.py new/hatch-hatch-v1.14.1/tests/backend/dep/test_core.py --- old/hatch-hatch-v1.14.0/tests/backend/dep/test_core.py 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/tests/backend/dep/test_core.py 2025-04-07 06:13:52.000000000 +0200 @@ -92,7 +92,7 @@ check=True, capture_output=True, ) - assert not dependencies_in_sync([Requirement('requests@git+https://github.com/psf/requests')], venv.sys_path) + assert dependencies_in_sync([Requirement('requests@git+https://github.com/psf/requests')], venv.sys_path) @pytest.mark.requires_internet @@ -114,9 +114,7 @@ check=True, capture_output=True, ) - assert not dependencies_in_sync( - [Requirement('requests@git+https://github.com/psf/requests@main')], venv.sys_path - ) + assert dependencies_in_sync([Requirement('requests@git+https://github.com/psf/requests@main')], venv.sys_path) @pytest.mark.requires_internet diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hatch-hatch-v1.14.0/tests/helpers/helpers.py new/hatch-hatch-v1.14.1/tests/helpers/helpers.py --- old/hatch-hatch-v1.14.0/tests/helpers/helpers.py 2024-12-16 01:59:56.000000000 +0100 +++ new/hatch-hatch-v1.14.1/tests/helpers/helpers.py 2025-04-07 06:13:52.000000000 +0200 @@ -53,7 +53,6 @@ 'pip', 'install', '--disable-pip-version-check', - '--no-python-version-warning', ] add_verbosity_flag(command, verbosity, adjustment=-1) command.extend(dependencies)