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>
|
||||
|
||||
@ -38,7 +60,7 @@ Mon May 29 17:00:46 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
-------------------------------------------------------------------
|
||||
Mon May 22 20:41:26 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update description
|
||||
- Update description
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 22 07:52:37 UTC 2023 - Dan Čermák <dcermak@suse.com>
|
||||
@ -123,7 +145,7 @@ Tue Dec 13 17:40:10 UTC 2022 - Benjamin Greiner <code@bnavigator.de>
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 13 16:06:09 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to version 1.4.0
|
||||
- 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
|
||||
@ -289,7 +311,7 @@ Wed Apr 14 21:43:18 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||
* 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).
|
||||
version constraints (#128).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 20 11:20:59 UTC 2020 - Dan Čermák <dcermak@suse.com>
|
||||
@ -305,7 +327,7 @@ Fri Oct 16 17:01:46 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 10 20:06:27 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
||||
|
||||
- unbundle vendored packages
|
||||
- unbundle vendored packages
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 8 18:49:33 UTC 2020 - Benjamin 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