forked from pool/python-poetry-core
- update to 1.8.1:
* Fix an issue where git URLs starting with `git+` could not be parsed anymore (#657). * Add `3.12` to the list of available Python versions (#631). * Add support for creating packages dynamically in the build script * Improve marker logic for `extra` markers (#636). * Update list of supported licenses (#635, * #646). * Deprecate `Dependency.transitive_python_versions` (#648). * Deprecate `Dependency.transitive_python_constraint` (#649). * Fix an issue where projects with extension modules were not installed in editable mode (#633). * Fix an issue where the wrong or no `lib` folder was added to the wheel (#634). * Replace `jsonschema` with `fastjsonschema`. * `lark==1.1.8` * `packaging==23.2` - Update description - Update to version 1.4.0 version constraints (#128). - unbundle vendored packages OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-poetry-core?expand=0&rev=37
This commit is contained in:
parent
b037cc23b3
commit
0ecf734861
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:302ede6fabb5935e1b6d0956376bb92e9874468f95cb8916eeb97e7a09276350
|
||||
size 459637
|
3
poetry-core-1.8.1-gh.tar.gz
Normal file
3
poetry-core-1.8.1-gh.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e73e3a57a1d5205a2f0c527ea598401a94ca46047d1534008ecb911ce790ead
|
||||
size 367396
|
@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 2 19:14:12 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.8.1:
|
||||
* Fix an issue where git URLs starting with `git+` could not be
|
||||
parsed anymore (#657).
|
||||
* Add `3.12` to the list of available Python versions (#631).
|
||||
* Add support for creating packages dynamically in the build
|
||||
script
|
||||
* Improve marker logic for `extra` markers (#636).
|
||||
* Update list of supported licenses (#635,
|
||||
* #646).
|
||||
* Deprecate `Dependency.transitive_python_versions` (#648).
|
||||
* Deprecate `Dependency.transitive_python_constraint` (#649).
|
||||
* Fix an issue where projects with extension modules were not
|
||||
installed in editable mode (#633).
|
||||
* Fix an issue where the wrong or no `lib` folder was added to
|
||||
the wheel (#634).
|
||||
* Replace `jsonschema` with `fastjsonschema`.
|
||||
* `lark==1.1.8`
|
||||
* `packaging==23.2`
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 23 10:06:31 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-poetry-core
|
||||
#
|
||||
# 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
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-poetry-core
|
||||
Version: 1.7.0
|
||||
Version: 1.8.1
|
||||
Release: 0
|
||||
Summary: Poetry PEP 517 Build Backend
|
||||
License: Apache-2.0 AND BSD-2-Clause AND MIT AND Python-2.0
|
||||
@ -50,14 +50,12 @@ PEP 517 compatible build frontends to build Poetry managed projects.
|
||||
%prep
|
||||
%setup -q -n poetry-core-%{version}
|
||||
mkdir vendoredlicenses
|
||||
cp src/poetry/core/_vendor/attrs/LICENSE vendoredlicenses/attrs.LICENSE
|
||||
cp src/poetry/core/_vendor/jsonschema/COPYING vendoredlicenses/jsonschema.COPYING
|
||||
cp src/poetry/core/_vendor/lark/LICENSE vendoredlicenses/lark.LICENSE
|
||||
cp src/poetry/core/_vendor/packaging/LICENSE vendoredlicenses/packaging.LICENSE
|
||||
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/tomli/LICENSE vendoredlicenses/tomli.LICENSE
|
||||
cp -p src/poetry/core/_vendor/lark/LICENSE vendoredlicenses/lark.LICENSE
|
||||
cp -p src/poetry/core/_vendor/fastjsonschema/LICENS vendoredlicenses/fastjsonschema.LICENSE
|
||||
cp -p src/poetry/core/_vendor/packaging/LICENSE vendoredlicenses/packaging.LICENSE
|
||||
cp -p src/poetry/core/_vendor/packaging/LICENSE.APACHE vendoredlicenses/packaging.LICENSE.APACHE
|
||||
cp -p src/poetry/core/_vendor/packaging/LICENSE.BSD vendoredlicenses/packaging.LICENSE.BSD
|
||||
cp -p src/poetry/core/_vendor/tomli/LICENSE vendoredlicenses/tomli.LICENSE
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
Loading…
Reference in New Issue
Block a user