SHA256
1
0
forked from pool/python-pdm

- Update to v2.1.5

* Ensure pypi.[ca,client]_cert[s] config items are passed to distribution
    builder install steps to allow for custom PyPI index sources with self
    signed certificates. #1396
  * Fix a crash issue when depending on editable packages with extras. #1401
  * Do not save the python path when using non-interactive mode in pdm init.
    #1410
  * Restrict importlib-metadata (<5.0.0) for Python <3.8 #1411

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pdm?expand=0&rev=18
This commit is contained in:
Daniel Garcia 2022-10-05 09:58:05 +00:00 committed by Git OBS Bridge
parent 04ead52648
commit b955d945dc
4 changed files with 17 additions and 4 deletions

View File

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

3
pdm-2.1.5.tar.gz Normal file
View File

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

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Wed Oct 5 09:47:36 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>
- Update to v2.1.5
* Ensure pypi.[ca,client]_cert[s] config items are passed to distribution
builder install steps to allow for custom PyPI index sources with self
signed certificates. #1396
* Fix a crash issue when depending on editable packages with extras. #1401
* Do not save the python path when using non-interactive mode in pdm init.
#1410
* Restrict importlib-metadata (<5.0.0) for Python <3.8 #1411
-------------------------------------------------------------------
Tue Oct 4 22:54:50 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>

View File

@ -26,7 +26,7 @@
%bcond_with test
%endif
Name: python-pdm%{psuffix}
Version: 2.1.3
Version: 2.1.5
Release: 0
Summary: Python Development Master
License: MIT
@ -104,6 +104,7 @@ sed -i 's/"certifi>=[0-9.]*"/"certifi"/' pyproject.toml
donttest="network"
# mock testing finds the wrong python versions in our multiflavor setup
donttest="$donttest or test_project_packages_path or test_conda_backend_create"
donttest="$donttest or test_init_non_interactive"
%pytest -k "not ($donttest)"
%endif