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

- Update to 1.0.3
  * Fixed an error when handling single-digit Python markers (#156)
  * Fixed dependency markers not being properly copied when changing the constraint (#163).
- Release 1.0.2
  * Fixed a missing import causing an error in Poetry (#134).
- Release 1.0.1
  * Fixed PEP 508 representation of dependency without extras
    (#102).
  * Fixed an error where development dependencies were being
    resolved when invoking the PEP-517 backend (#101).
  * Fixed source distribution not being deterministic (#105).
  * Fixed an error where zip files were left open when building
    wheels (#122).
  * Fixed an error where explicitly included files were still not
    present in final distributions (#124).
  * Fixed wheel filename matching for recent architecture (#125,
    #129).
  * Fixed an error where the & character was not accepted for
    author names (#120).
  * Fixed the PEP-508 representation of some dependencies (#103).
  * Fixed the Requires-Python metadata generation (#127).
  * Fixed an error where pre-release versions were accepted in
    version constraints (#128).

OBS-URL: https://build.opensuse.org/request/show/885476
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-core?expand=0&rev=6
This commit is contained in:
Steve Kowalik 2021-04-15 06:37:33 +00:00 committed by Git OBS Bridge
parent 93ba1e365a
commit 8e3928879b
4 changed files with 33 additions and 8 deletions

View File

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

View File

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

View File

@ -1,3 +1,30 @@
-------------------------------------------------------------------
Wed Apr 14 21:43:18 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to 1.0.3
* Fixed an error when handling single-digit Python markers (#156)
* Fixed dependency markers not being properly copied when changing the constraint (#163).
- Release 1.0.2
* Fixed a missing import causing an error in Poetry (#134).
- Release 1.0.1
* Fixed PEP 508 representation of dependency without extras
(#102).
* Fixed an error where development dependencies were being
resolved when invoking the PEP-517 backend (#101).
* Fixed source distribution not being deterministic (#105).
* Fixed an error where zip files were left open when building
wheels (#122).
* Fixed an error where explicitly included files were still not
present in final distributions (#124).
* Fixed wheel filename matching for recent architecture (#125,
#129).
* Fixed an error where the & character was not accepted for
author names (#120).
* Fixed the PEP-508 representation of some dependencies (#103).
* Fixed the Requires-Python metadata generation (#127).
* Fixed an error where pre-release versions were accepted in
version constraints (#128).
-------------------------------------------------------------------
Tue Oct 20 11:20:59 UTC 2020 - Dan Čermák <dcermak@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-poetry-core
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -19,14 +19,14 @@
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-poetry-core
Version: 1.0.0
Version: 1.0.3
Release: 0
Summary: Python poetry core utilities
License: MIT
Group: Development/Languages/Python
URL: https://github.com/python-poetry/poetry-core
# Only the github archive provides the tests
Source: %{URL}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
Source: %{url}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
BuildRequires: %{python_module attrs >= 19.3.0}
BuildRequires: %{python_module jsonschema >= 3.2.0}
BuildRequires: %{python_module lark-parser >= 0.9.0}
@ -68,8 +68,6 @@ PEP 517 compatible build frontends to build Poetry managed projects.
rm poetry/__init__.py
# unbundle: we provide the vendored packages on our own
rm -r poetry/core/_vendor
# remove executable bits
find poetry/core -name '*.py' -executable -print0 | xargs -0 chmod a-x
%build
%pyproject_wheel