15
0

- Disable broken tests with new packaging module because invalid

version
- Update to version 3.7.2
  * Fix #928: correct default for pre-release matching after switching
    from ``pkg_resources`` to ``packaging``.
  * Fix #949: correct parsing of wheel tags for Python 3.10 and above.
- 3.7.1 (2022-12-16)
  * Fix #939: pin packaging to <22 as it removed the deprecated
    LegacyVersion.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-devpi-common?expand=0&rev=6
This commit is contained in:
2023-03-06 17:23:09 +00:00
committed by Git OBS Bridge
parent f49c497401
commit 5eda3c1ddb
4 changed files with 23 additions and 8 deletions

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9078989279ad79e9c181c7badc4a738460445187101eb0cbade675934d5e4644
size 25138

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Mar 6 17:21:35 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- Disable broken tests with new packaging module because invalid
version
- Update to version 3.7.2
* Fix #928: correct default for pre-release matching after switching
from ``pkg_resources`` to ``packaging``.
* Fix #949: correct parsing of wheel tags for Python 3.10 and above.
- 3.7.1 (2022-12-16)
* Fix #939: pin packaging to <22 as it removed the deprecated
LegacyVersion.
-------------------------------------------------------------------
Wed Oct 12 03:05:13 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-devpi-common
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,8 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-devpi-common
Version: 3.7.0
Version: 3.7.2
Release: 0
Summary: Utilities jointly used by devpi-server and devpi-client
License: MIT
@@ -54,11 +53,14 @@ rm tox.ini
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
# Doesn't work with latest packaging module because invalid version
donttest="test_noversion_sameproject or test_sort_sameproject_links"
%pytest -k "not ($donttest)"
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%{python_sitelib}/devpi_common
%{python_sitelib}/devpi_common-%{version}*-info
%changelog