15
0

Accepting request 1221225 from home:bnavigator:branches:devel:languages:python

- Update to 1.8.0
  ## Changed
  * Relax the constraint on poetry and poetry-core to allow
    (future) 2.* versions (#280).
  ## Fixed
  * Fix an issue where editable installs where not exported
    correctly (#258).
- Release 1.7.1
  ## Changed
  * Export --index-url before --extra-index-url to work around a
    pip bug (#270).
  ## Fixed
  * Fix an issue where the source with the highest priority was
    exported with --index-url despite PyPI being among the sources
    (#270).
- Release 1.7.0
  ## Changed
  * Bump minimum required poetry version to 1.8.0 (#263).
  ## Fixed
  * Fix an issue where all sources were exported with
    --extra-index-url even though PyPI was deactivated (#263).

OBS-URL: https://build.opensuse.org/request/show/1221225
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-plugin-export?expand=0&rev=19
This commit is contained in:
2024-11-04 19:23:35 +00:00
committed by Git OBS Bridge
parent 73180eaa7d
commit 6c2f70982b
4 changed files with 36 additions and 11 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:091939434984267a91abf2f916a26b00cff4eee8da63ec2a24ba4b17cf969a59
size 29265

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1fa6168a85d59395d835ca564bc19862a7c76061e60c3e7dfaec70d50937fc61
size 29840

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Mon Nov 4 19:08:14 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Update to 1.8.0
## Changed
* Relax the constraint on poetry and poetry-core to allow
(future) 2.* versions (#280).
## Fixed
* Fix an issue where editable installs where not exported
correctly (#258).
- Release 1.7.1
## Changed
* Export --index-url before --extra-index-url to work around a
pip bug (#270).
## Fixed
* Fix an issue where the source with the highest priority was
exported with --index-url despite PyPI being among the sources
(#270).
- Release 1.7.0
## Changed
* Bump minimum required poetry version to 1.8.0 (#263).
## Fixed
* Fix an issue where all sources were exported with
--extra-index-url even though PyPI was deactivated (#263).
-------------------------------------------------------------------
Thu Dec 14 21:03:38 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file
# spec file for package python-poetry-plugin-export
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
%{?sle15_python_module_pythons}
Name: python-poetry-plugin-export%{psuffix}
Version: 1.6.0
Version: 1.8.0
Release: 0
Summary: Poetry plugin to export the dependencies to various formats
License: MIT
@@ -36,8 +36,9 @@ 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 base >= 3.8}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core >= 1.6.0}
BuildRequires: %{python_module poetry-core >= 1.7.0 with %python-poetry-core < 3}
# No buildtime requirement of poetry: avoid build dep cycles!
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module build}
@@ -47,9 +48,8 @@ BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module pytest}
%endif
BuildRequires: fdupes
Requires: python-poetry >= 1.5.0
Requires: python-poetry-core >= 1.6.0
Requires: (python-poetry >= 1.8.0 with python-poetry < 3)
Requires: (python-poetry-core >= 1.7.0 with python-poetry-core < 3)
Provides: python-poetry_plugin_export = %{version}-%{release}
BuildArch: noarch
%python_subpackages
@@ -79,7 +79,7 @@ Poetry plugin to export the dependencies to various formats
%doc README.md
%license LICENSE
%{python_sitelib}/poetry_plugin_export
%{python_sitelib}/poetry_plugin_export-%{version}*-info
%{python_sitelib}/poetry_plugin_export-%{version}.dist-info
%endif
%changelog