Update to 3.20.0

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1874601
This commit is contained in:
Tomas Hrnciar 2020-09-07 11:41:41 +02:00
commit 3d1b4d74bc
3 changed files with 11 additions and 3 deletions

View file

@ -14,7 +14,7 @@
%global pypi_name tox
Name: python-%{pypi_name}
Version: 3.19.0
Version: 3.20.0
Release: 1%{?dist}
Summary: Virtualenv-based automation of test activities
@ -74,7 +74,6 @@ BuildRequires: python3-filelock
BuildRequires: python3-flaky
BuildRequires: python3-freezegun
BuildRequires: python3-packaging
BuildRequires: python3-pathlib2
BuildRequires: python3-pip
BuildRequires: python3-pluggy >= 0.12
BuildRequires: python3-poetry
@ -115,6 +114,10 @@ can use for:
%prep
%autosetup -p1 -n %{pypi_name}-%{version}
# Pathlib2 was retired in Fedora, instead of unretiring it,
# it's enough to use pathlib instead.
find . -type f -name "*.py" -print0 | xargs -0 sed -i "s/pathlib2/pathlib/g"
# remove bundled egg-info
rm -rf %{pypi_name}.egg-info
@ -137,6 +140,10 @@ rm -rf %{pypi_name}.egg-info
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/
%changelog
* Mon Sep 07 2020 Tomas Hrnciar <thrnciar@redhat.com> - 3.20.0-1
- Update to 3.20.0
- Fixes rhbz#1874601
* Fri Aug 07 2020 Miro Hrončok <mhroncok@redhat.com> - 3.19.0-1
- Update to 3.19.0
- Fixes rhbz#1861313