Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
25957f9379 | ||
|
|
a73300eec0 | ||
|
|
c9b5ad8016 | ||
|
|
eb37bcbd14 | ||
|
|
038a8083d5 | ||
|
|
98eaa3b2cd |
4 changed files with 29 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 <thrnciar@redhat.com> - 3.24.4-1
|
||||
- Update to 3.24.4
|
||||
|
||||
* Tue Aug 31 2021 Miro Hrončok <mhroncok@redhat.com> - 3.24.3-1
|
||||
- Update to 3.24.3
|
||||
|
||||
* Tue Aug 03 2021 Miro Hrončok <mhroncok@redhat.com> - 3.24.1-1
|
||||
- Update to 3.24.1
|
||||
|
||||
* Tue Aug 03 2021 Miro Hrončok <mhroncok@redhat.com> - 3.19.0-3
|
||||
- Add Recommends for Python 3.10
|
||||
- https://fedoraproject.org/wiki/Changes/Python3.10
|
||||
|
||||
* Thu Mar 18 2021 Miro Hrončok <mhroncok@redhat.com> - 3.19.0-2
|
||||
- Expose tox requires via the config object
|
||||
- Add --no-provision flag
|
||||
|
||||
* Fri Aug 07 2020 Miro Hrončok <mhroncok@redhat.com> - 3.19.0-1
|
||||
- Update to 3.19.0
|
||||
- Fixes rhbz#1861313
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (tox-3.19.0.tar.gz) = 93f1a56e100c79608b73668449bfe44302222c1e502c5f513762b09ed9fc2d11d056e4e8028d43c1e5af0257f33d7683f5fced7afef15fcf761785d5dbfa74c3
|
||||
SHA512 (tox-3.24.4.tar.gz) = 9fe2256276b83bf3bc55ec1876be41da2ff7217187f4bf8f4d728106f9c63fc59d146de5e424f7a90d28b938d312c175f7c815bfd3a17d329bec9ba4102139fc
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue