Accepting request 1042951 from devel:languages:python

Revert Factory reversion

- Update devendored requirements
- Update to version 1.4.0 
  * Added
  The PEP 517 metadata_directory is now respected as an input to the build_wheel hook (#487).
  * Changed
  Sources are now considered more carefully when dealing with dependencies with environment markers (#497).
  EmptyConstraint is now hashable (#513).
  ParseConstraintError is now raised on version and constraint parsing errors, and includes information on the package that caused the error (#514).
  * Fixed
  Fix an issue where invalid PEP 508 requirements were generated due to a missing space before semicolons (#510).
  Fix an issue where relative paths were encoded into package requirements, instead of a file:// URL as required by PEP 508 (#512).
  * Vendoring
  jsonschema==4.17.0
  lark==1.1.14
  pyrsistent==0.19.2
  tomlkit==0.11.6
  typing-extensions==4.4.0

OBS-URL: https://build.opensuse.org/request/show/1042951
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-core?expand=0&rev=23
This commit is contained in:
Benjamin Greiner 2022-12-14 15:48:51 +00:00 committed by Git OBS Bridge
parent 2b024e8da9
commit 35912b94a7
4 changed files with 37 additions and 12 deletions

View File

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

View File

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

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Tue Dec 13 17:40:10 UTC 2022 - Benjamin Greiner <code@bnavigator.de>
- Update devendored requirements
-------------------------------------------------------------------
Tue Dec 13 16:06:09 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to version 1.4.0
* Added
The PEP 517 metadata_directory is now respected as an input to the build_wheel hook (#487).
* Changed
Sources are now considered more carefully when dealing with dependencies with environment markers (#497).
EmptyConstraint is now hashable (#513).
ParseConstraintError is now raised on version and constraint parsing errors, and includes information on the package that caused the error (#514).
* Fixed
Fix an issue where invalid PEP 508 requirements were generated due to a missing space before semicolons (#510).
Fix an issue where relative paths were encoded into package requirements, instead of a file:// URL as required by PEP 508 (#512).
* Vendoring
jsonschema==4.17.0
lark==1.1.14
pyrsistent==0.19.2
tomlkit==0.11.6
typing-extensions==4.4.0
-------------------------------------------------------------------
Tue Oct 11 12:48:50 UTC 2022 - Dirk Müller <dmueller@suse.com>

View File

@ -17,7 +17,7 @@
Name: python-poetry-core
Version: 1.3.2
Version: 1.4.0
Release: 0
Summary: Python poetry core utilities
License: MIT
@ -27,24 +27,24 @@ URL: https://github.com/python-poetry/poetry-core
Source: %{url}/archive/%{version}.tar.gz#/poetry-core-%{version}-gh.tar.gz
BuildRequires: %{python_module attrs >= 22.1.0}
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module jsonschema >= 4.1.0}
BuildRequires: %{python_module lark >= 1.1.2}
BuildRequires: %{python_module jsonschema >= 4.16.0}
BuildRequires: %{python_module lark >= 1.1.3}
BuildRequires: %{python_module packaging >= 21.3}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pyparsing >= 3.0.9}
BuildRequires: %{python_module pyrsistent >= 0.18.1}
BuildRequires: %{python_module tomlkit >= 0.11.3}
BuildRequires: %{python_module typing-extensions >= 4.3.0}
BuildRequires: %{python_module tomlkit >= 0.11.5}
BuildRequires: %{python_module typing-extensions >= 4.4.0}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-attrs >= 22.1.0
Requires: python-jsonschema >= 4.1.0
Requires: python-lark >= 1.1.2
Requires: python-jsonschema >= 4.16.0
Requires: python-lark >= 1.1.3
Requires: python-packaging >= 21.3
Requires: python-pyparsing >= 3.0.9
Requires: python-pyrsistent >= 0.18.1
Requires: python-tomlkit >= 0.11.3
Requires: python-typing-extensions >= 4.3.0
Requires: python-tomlkit >= 0.11.5
Requires: python-typing-extensions >= 4.4.0
BuildArch: noarch
# SECTION these are all test dependencies, including devel and git
BuildRequires: %{python_module devel}