1
0

Accepting request 1088338 from home:dancermak:branches:devel:languages:python

New upstream release 1.6.0

OBS-URL: https://build.opensuse.org/request/show/1088338
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-core?expand=0&rev=29
This commit is contained in:
Matej Cepl 2023-05-22 11:22:03 +00:00 committed by Git OBS Bridge
parent 8617499c86
commit 88f37c03c0
4 changed files with 36 additions and 5 deletions

BIN
poetry-core-1.5.2-gh.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

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

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Mon May 22 07:52:37 UTC 2023 - Dan Čermák <dcermak@suse.com>
- New upstream release 1.6.0
### Added
- Improve error message for invalid markers ([#569](https://github.com/python-poetry/poetry-core/pull/569)).
- Increase robustness when deleting temporary directories on Windows ([#460](https://github.com/python-poetry/poetry-core/pull/460)).
- Add support for file dependencies with subdirectories ([#467](https://github.com/python-poetry/poetry-core/pull/467)).
### Changed
- Replace `tomlkit` with `tomli`, which changes the interface of some _internal_ classes ([#483](https://github.com/python-poetry/poetry-core/pull/483)).
- Deprecate `Package.category` ([#561](https://github.com/python-poetry/poetry-core/pull/561)).
### Fixed
- Fix a performance regression in marker handling ([#568](https://github.com/python-poetry/poetry-core/pull/568)).
- Fix an issue where wildcard version constraints were not handled correctly ([#402](https://github.com/python-poetry/poetry-core/pull/402)).
- Fix an issue where `poetry build` created duplicate Python classifiers if they were specified manually ([#578](https://github.com/python-poetry/poetry-core/pull/578)).
- Fix an issue where local versions where not handled correctly ([#579](https://github.com/python-poetry/poetry-core/pull/579)).
### Vendoring
- [`attrs==23.1.0`](https://github.com/python-attrs/attrs/blob/main/CHANGELOG.md)
- [`packaging==23.1`](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [`tomli==2.0.1`](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md)
- [`typing-extensions==4.5.0`](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
-------------------------------------------------------------------
Mon Apr 24 17:44:26 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-poetry-core
Version: 1.5.2
Version: 1.6.0
Release: 0
Summary: Python poetry core utilities
License: Apache-2.0 AND BSD-2-Clause AND MIT AND Python-2.0
@ -40,6 +40,7 @@ BuildRequires: %{python_module build}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module virtualenv}
BuildRequires: %{python_module tomli-w}
BuildRequires: git-core
# /SECTION
%python_subpackages
@ -59,7 +60,7 @@ cp src/poetry/core/_vendor/packaging/LICENSE vendoredlicenses/packaging.
cp src/poetry/core/_vendor/packaging/LICENSE.APACHE vendoredlicenses/packaging.LICENSE.APACHE
cp src/poetry/core/_vendor/packaging/LICENSE.BSD vendoredlicenses/packaging.LICENSE.BSD
cp src/poetry/core/_vendor/pyrsistent/LICENSE.mit vendoredlicenses/pyrsistent.LICENSE.mit
cp src/poetry/core/_vendor/tomlkit/LICENSE vendoredlicenses/tomlkit.LICENSE
cp src/poetry/core/_vendor/tomli/LICENSE vendoredlicenses/tomli.LICENSE
cp src/poetry/core/_vendor/typing_extensions.LICENSE vendoredlicenses/typing_extensions.LICENSE
%build