Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-poetry for openSUSE:Factory checked in at 2023-04-25 21:54:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-poetry (Old) and /work/SRC/openSUSE:Factory/.python-poetry.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-poetry" Tue Apr 25 21:54:48 2023 rev:22 rq:1082802 version:1.4.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-poetry/python-poetry.changes 2023-03-03 22:31:47.604130057 +0100 +++ /work/SRC/openSUSE:Factory/.python-poetry.new.1533/python-poetry.changes 2023-04-25 21:54:49.423681422 +0200 @@ -1,0 +2,31 @@ +Mon Apr 24 19:03:13 UTC 2023 - Torsten Gruner <simmpho...@opensuse.org> + +- Update to 1.4.2 + * When trying to install wheels with invalid RECORD files, Poetry does + not fail anymore but only prints a warning. + This mitigates an unintended change introduced in Poetry 1.4.1 (#7694). + * Fix an issue where relative git submodule urls were not parsed correctly (#7017). + * Fix an issue where Poetry could freeze when building a project with a build + script if it generated enough output to fill the OS pipe buffer (#7699). +- Changes in 1.4.0 + * Add a modern installer (installer.modern-installation) for + faster installation of packages and independence from pip + (#6205). + * Add support for Private :: trove classifiers (#7271). + * Add the version of poetry in the @generated comment at the + beginning of the lock file (#7339). + * Add support for virtualenvs.prefer-active-python when running + poetry new and poetry init (#7100). + * Deprecate the old installer, i.e. setting + experimental.new-installer to false (#7358). + * Remove unused platform field from cached package info and bump + the cache version (#7304). + * Extra dependencies of the root project are now sorted in the + lock file (#7375). + * Remove upper boundary for importlib-metadata dependency + (#7434). + * Validate path dependencies during use instead of during + construction (#6844). + * Remove the deprecated repository modules (#7468). + +------------------------------------------------------------------- Old: ---- poetry-1.3.2.tar.gz New: ---- poetry-1.4.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-poetry.spec ++++++ --- /var/tmp/diff_new_pack.6zsKSO/_old 2023-04-25 21:54:49.971684623 +0200 +++ /var/tmp/diff_new_pack.6zsKSO/_new 2023-04-25 21:54:49.975684647 +0200 @@ -26,7 +26,7 @@ %endif Name: python-poetry%{psuffix} -Version: 1.3.2 +Version: 1.4.2 Release: 0 Summary: Python dependency management and packaging License: MIT @@ -36,28 +36,31 @@ Source: https://github.com/python-poetry/poetry/archive/%{version}.tar.gz#/poetry-%{version}.tar.gz BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module pip} -BuildRequires: %{python_module poetry-core = 1.4.0} +BuildRequires: %{python_module poetry-core = 1.5.2} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-CacheControl >= 0.12.9 +Requires: python-build >= 0.10.0 Requires: python-cachy >= 0.3.0 Requires: python-cleo >= 2.0.0 Requires: python-crashtest >= 0.4.1 -Requires: python-dulwich >= 0.20.46 +Requires: python-dulwich >= 0.21.2 Requires: python-filelock >= 3.8.0 Requires: python-html5lib >= 1.0 -Requires: python-poetry-core = 1.4.0 -Requires: python-poetry-plugin-export >= 1.2.0 +Requires: python-poetry-core = 1.5.2 +Requires: python-poetry-plugin-export >= 1.3.0 %if 0%{?python_version_nodots} < 310 Requires: python-importlib-metadata >= 4.4 %endif +Requires: python-installer >= 0.7.0 Requires: python-jsonschema >= 4.10.0 Requires: python-keyring >= 23.9.0 Requires: python-lockfile >= 0.12.2 Requires: python-packaging >= 20.4 Requires: python-pexpect >= 4.7.0 -Requires: python-pkginfo >= 1.5 +Requires: python-pkginfo >= 1.9.4 Requires: python-platformdirs >= 2.5.2 +Requires: python-pyproject-hooks >= 1.0.0 Requires: python-requests >= 2.18 Requires: python-shellingham >= 1.5 Requires: (python-requests-toolbelt >= 0.9.1 with python-requests-toolbelt < 0.11.0) @@ -74,16 +77,15 @@ Recommends: python-devel BuildArch: noarch %if %{with test} -BuildRequires: %{python_module deepdiff >= 5.0} -BuildRequires: %{python_module flatdict >= 4.0.1} +BuildRequires: %{python_module deepdiff >= 6.2} BuildRequires: %{python_module httpretty >= 1.0} # Required because deepdiff > 6.2.3 BuildRequires: %{python_module orjson} BuildRequires: %{python_module poetry = %{version}} BuildRequires: %{python_module psutil} BuildRequires: %{python_module pytest >= 7.1} -BuildRequires: %{python_module pytest-mock >= 3.5} -BuildRequires: %{python_module pytest-xdist} +BuildRequires: %{python_module pytest-mock >= 3.9} +BuildRequires: %{python_module pytest-xdist >= 3.1} BuildRequires: git-core %endif %python_subpackages @@ -93,8 +95,8 @@ %prep %autosetup -p1 -n poetry-%{version} -rm src/poetry/_vendor/.gitignore -rmdir src/poetry/_vendor +#rm src/poetry/_vendor/.gitignore +#rmdir src/poetry/_vendor for f in console/commands/source/update.py \ console/events/console_events.py \ layouts/standard.py; do @@ -118,6 +120,7 @@ donttest="test_uninstall_git_package_nspkg_pth_cleanup" # does not find the expected packages in venv donttest="$donttest or test_executor_should_write_pep610_url_references" +donttest="$donttest or test_prepare_directory or test_prepare_sdist" %{python_expand # pytest needs to be called from the virtualenv python interpreter gh#python-poetry/poetry#1645 virtualenv-%{$python_bin_suffix} --system-site-packages testenv-%{$python_bin_suffix} source testenv-%{$python_bin_suffix}/bin/activate @@ -135,7 +138,7 @@ %if !%{with test} %files %{python_files} -%doc README.md CHANGELOG.md +%doc README.md %license LICENSE %{python_sitelib}/poetry %{python_sitelib}/poetry-%{version}.dist-info ++++++ poetry-1.3.2.tar.gz -> poetry-1.4.2.tar.gz ++++++ ++++ 18751 lines of diff (skipped)