diff --git a/.gitignore b/.gitignore index 1bb6f55..22bfe73 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /tox-3.17.0.tar.gz /tox-3.18.0.tar.gz /tox-3.19.0.tar.gz +/tox-3.24.1.tar.gz diff --git a/python-tox.spec b/python-tox.spec index 84762dc..a00aab1 100644 --- a/python-tox.spec +++ b/python-tox.spec @@ -14,7 +14,7 @@ %global pypi_name tox Name: python-%{pypi_name} -Version: 3.19.0 +Version: 3.24.4 Release: 1%{?dist} Summary: Virtualenv-based automation of test activities @@ -58,6 +58,7 @@ Recommends: python3.6 Recommends: python3.7 Recommends: python3.8 Recommends: python3.9 +Recommends: python3.10 Recommends: pypy2-devel Recommends: pypy3-devel Recommends: python2-devel @@ -74,7 +75,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 +115,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 +141,23 @@ rm -rf %{pypi_name}.egg-info %{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info/ %changelog +* Wed Oct 13 2021 Tomáš Hrnčiar - 3.24.4-1 +- Update to 3.24.4 + +* Tue Aug 31 2021 Miro Hrončok - 3.24.3-1 +- Update to 3.24.3 + +* Tue Aug 03 2021 Miro Hrončok - 3.24.1-1 +- Update to 3.24.1 + +* Tue Aug 03 2021 Miro Hrončok - 3.19.0-3 +- Add Recommends for Python 3.10 +- https://fedoraproject.org/wiki/Changes/Python3.10 + +* Thu Mar 18 2021 Miro Hrončok - 3.19.0-2 +- Expose tox requires via the config object +- Add --no-provision flag + * Fri Aug 07 2020 Miro Hrončok - 3.19.0-1 - Update to 3.19.0 - Fixes rhbz#1861313 diff --git a/sources b/sources index efc465e..05035df 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tox-3.19.0.tar.gz) = 93f1a56e100c79608b73668449bfe44302222c1e502c5f513762b09ed9fc2d11d056e4e8028d43c1e5af0257f33d7683f5fced7afef15fcf761785d5dbfa74c3 +SHA512 (tox-3.24.4.tar.gz) = 9fe2256276b83bf3bc55ec1876be41da2ff7217187f4bf8f4d728106f9c63fc59d146de5e424f7a90d28b938d312c175f7c815bfd3a17d329bec9ba4102139fc diff --git a/tests/tests.yml b/tests/tests.yml index b811a69..91b2022 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -48,6 +48,9 @@ - smoke39: dir: python/smoke run: VERSION=3.9 ./venv.sh + - smoke310: + dir: python/smoke + run: VERSION=3.10 ./venv.sh - pyproject_pytest: dir: pyproject-rpm-macros/tests run: ./mocktest.sh python-pytest @@ -66,6 +69,7 @@ - python37 - python38 - python39 + - python3.10 - python2-devel - python3-devel - python3-tox