From c3ab559f5f852bbc0bca766dcd093436b46b46df0273d165403287c3d821e28a Mon Sep 17 00:00:00 2001 From: Daniel Garcia Date: Wed, 14 Dec 2022 13:07:55 +0000 Subject: [PATCH 1/3] - Update to 1.2.0 * Drop some compatibility code and bump minimum required poetry version to 1.2.2 (#143). * Ensure compatibility with upcoming Poetry releases (#151). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-plugin-export?expand=0&rev=5 --- poetry-plugin-export-1.1.2.tar.gz | 3 --- poetry_plugin_export-1.2.0.tar.gz | 3 +++ python-poetry-plugin-export.changes | 8 ++++++++ python-poetry-plugin-export.spec | 9 +++++---- 4 files changed, 16 insertions(+), 7 deletions(-) delete mode 100644 poetry-plugin-export-1.1.2.tar.gz create mode 100644 poetry_plugin_export-1.2.0.tar.gz diff --git a/poetry-plugin-export-1.1.2.tar.gz b/poetry-plugin-export-1.1.2.tar.gz deleted file mode 100644 index a3bcded..0000000 --- a/poetry-plugin-export-1.1.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e92525dd63f38ce74a51ed68ea91d753523f21ce5f9ef8d3b793e2a4b2222ef -size 28129 diff --git a/poetry_plugin_export-1.2.0.tar.gz b/poetry_plugin_export-1.2.0.tar.gz new file mode 100644 index 0000000..69ea7f7 --- /dev/null +++ b/poetry_plugin_export-1.2.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1dd42765408931d7831738749022651d43a2968b67c988db1b7a567dfe41ef +size 28406 diff --git a/python-poetry-plugin-export.changes b/python-poetry-plugin-export.changes index db26291..ddf8db8 100644 --- a/python-poetry-plugin-export.changes +++ b/python-poetry-plugin-export.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Dec 14 13:07:11 UTC 2022 - Daniel Garcia + +- Update to 1.2.0 + * Drop some compatibility code and bump minimum required poetry version to + 1.2.2 (#143). + * Ensure compatibility with upcoming Poetry releases (#151). + ------------------------------------------------------------------- Mon Oct 10 20:04:57 UTC 2022 - Ben Greiner diff --git a/python-poetry-plugin-export.spec b/python-poetry-plugin-export.spec index fd7fe68..e69295b 100644 --- a/python-poetry-plugin-export.spec +++ b/python-poetry-plugin-export.spec @@ -1,5 +1,5 @@ # -# spec file for package python-poetry-plugin-export +# spec file # # Copyright (c) 2022 SUSE LLC # @@ -26,18 +26,19 @@ %endif Name: python-poetry-plugin-export%{psuffix} -Version: 1.1.2 +Version: 1.2.0 Release: 0 Summary: Poetry plugin to export the dependencies to various formats License: MIT URL: https://python-poetry.org/ -Source: https://files.pythonhosted.org/packages/source/p/poetry-plugin-export/poetry-plugin-export-%{version}.tar.gz +Source: https://files.pythonhosted.org/packages/source/p/poetry-plugin-export/poetry_plugin_export-%{version}.tar.gz BuildRequires: %{python_module pip} BuildRequires: %{python_module poetry-core >= 1.1.0} BuildRequires: python-rpm-macros %if %{with test} BuildRequires: %{python_module poetry-plugin-export = %{version}} BuildRequires: %{python_module pytest-mock} +BuildRequires: %{python_module pytest-xdist} BuildRequires: %{python_module pytest} %endif BuildRequires: fdupes @@ -51,7 +52,7 @@ BuildArch: noarch Poetry plugin to export the dependencies to various formats %prep -%setup -q -n poetry-plugin-export-%{version} +%setup -q -n poetry_plugin_export-%{version} %if !%{with test} %build From e274c7c60171c7564125ee6619d60faedab1e004543dc1170cdd7cf1cdc1c93a Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Wed, 14 Dec 2022 16:06:32 +0000 Subject: [PATCH 2/3] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-plugin-export?expand=0&rev=6 --- python-poetry-plugin-export.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python-poetry-plugin-export.spec b/python-poetry-plugin-export.spec index e69295b..dec6e0c 100644 --- a/python-poetry-plugin-export.spec +++ b/python-poetry-plugin-export.spec @@ -33,7 +33,8 @@ License: MIT URL: https://python-poetry.org/ Source: https://files.pythonhosted.org/packages/source/p/poetry-plugin-export/poetry_plugin_export-%{version}.tar.gz BuildRequires: %{python_module pip} -BuildRequires: %{python_module poetry-core >= 1.1.0} +BuildRequires: %{python_module poetry-core >= 1.3.0} +# No buildtime requirement of poetry: avoid build dep cycles! BuildRequires: python-rpm-macros %if %{with test} BuildRequires: %{python_module poetry-plugin-export = %{version}} @@ -42,8 +43,8 @@ BuildRequires: %{python_module pytest-xdist} BuildRequires: %{python_module pytest} %endif BuildRequires: fdupes -Requires: python-poetry >= 1.2.0 -Requires: python-poetry-core >= 1.1.0 +Requires: python-poetry >= 1.2.2 +Requires: python-poetry-core >= 1.3.0 Provides: python-poetry_plugin_export = %{version}-%{release} BuildArch: noarch %python_subpackages From 44f6516d5c5659056d1035b3dce60a6256021d3af30aeb4a3ef9af33ec7d866b Mon Sep 17 00:00:00 2001 From: Benjamin Greiner Date: Wed, 14 Dec 2022 16:06:58 +0000 Subject: [PATCH 3/3] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-plugin-export?expand=0&rev=7 --- python-poetry-plugin-export.changes | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python-poetry-plugin-export.changes b/python-poetry-plugin-export.changes index ddf8db8..f0c77ea 100644 --- a/python-poetry-plugin-export.changes +++ b/python-poetry-plugin-export.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Dec 14 16:06:49 UTC 2022 - Benjamin Greiner + +- Bump requirements + ------------------------------------------------------------------- Wed Dec 14 13:07:11 UTC 2022 - Daniel Garcia