Update to 21.3

This commit is contained in:
Lumir Balhar 2021-11-18 07:36:31 +01:00
commit c05d8d4109
3 changed files with 10 additions and 3 deletions

View file

@ -17,7 +17,7 @@
%endif
Name: python-%{pypi_name}
Version: 21.2
Version: 21.3
Release: 1%{?dist}
Summary: Core utilities for Python packages
@ -117,7 +117,9 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files}
%if %{with tests}
%check
%pytest
# Specified tests don't work on big endian platforms
# Reported in: https://github.com/pypa/packaging/issues/472
%pytest -k "not test_get_musl_version and not test_parse_ld_musl_from_elf_no_interpreter_section and not test_parse_ld_musl_from_elf"
%endif
@ -134,6 +136,10 @@ echo '%{python3_sitelib}/packaging*' > %{pyproject_files}
%changelog
* Thu Nov 18 2021 Lumír Balhar <lbalhar@redhat.com> - 21.3-1
- Update to 21.3
Resolves: rhbz#2024413
* Mon Nov 01 2021 Lumír Balhar <lbalhar@redhat.com> - 21.2-1
- Update to 21.2
Resolves: rhbz#2018534