Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2ec7b8b81 | |||
| fbeaddaea8 | |||
| 7c86179926 | |||
| d6ac38c0a6 | |||
| 83c7b43fe1 | |||
| 9100fc98b1 | |||
| 066e7174f8 | |||
| b1d265dfe5 | |||
| 95d829b80a | |||
| fc33709c23 | |||
| 3646d9e27b |
@@ -91,6 +91,11 @@ Obsoletes: python3-tox < 3.24.4-2
|
||||
%prep
|
||||
%autosetup -p1 -n tox-%{version}
|
||||
|
||||
# In https://github.com/tox-dev/tox/pull/2463 upstream insisted on pinning tomli to >=2.0.1.
|
||||
# However, it works fine with 1.2.3 we have in Fedora 35+36, so we relax the dependency.
|
||||
# We rely on the Fedora CI to catch problems.
|
||||
sed -i 's/tomli>=2.0.1/tomli>=1.2.3/' setup.cfg
|
||||
|
||||
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires -r %{?with_tests:-x testing}
|
||||
@@ -126,9 +131,15 @@ Obsoletes: python3-tox < 3.24.4-2
|
||||
* Wed Sep 14 2022 Miro Hrončok <mhroncok@redhat.com> - 3.26.0-1
|
||||
- Update to 3.26.0
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jul 13 2022 Lumír Balhar <lbalhar@redhat.com> - 3.25.1-1
|
||||
- Update to 3.25.1
|
||||
|
||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.25.0-2
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Mon May 09 2022 Miro Hrončok <mhroncok@redhat.com> - 3.25.0-1
|
||||
- Update to 3.25.0
|
||||
|
||||
|
||||
+45
-2
@@ -30,9 +30,42 @@
|
||||
- all_supplementing_pythons:
|
||||
dir: tests
|
||||
run: ./all_supplementing_pythons.py
|
||||
- smoke27:
|
||||
dir: python/smoke
|
||||
run: VERSION=2.7 METHOD=virtualenv ./venv.sh
|
||||
- smoke35_optional:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.5 INSTALL_OR_SKIP=true ./venv.sh
|
||||
- smoke36:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.6 ./venv.sh
|
||||
- smoke37:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.7 ./venv.sh
|
||||
- smoke38:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.8 ./venv.sh
|
||||
- smoke39:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.9 ./venv.sh
|
||||
- smoke310:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.10 ./venv.sh
|
||||
- smoke311:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.11 ./venv.sh
|
||||
- smoke312:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.12 ./venv.sh
|
||||
- smoke_pypy37_optional:
|
||||
dir: python/smoke
|
||||
run: PYTHON=pypy3.7 VERSION=3.7 INSTALL_OR_SKIP=true ./venv.sh
|
||||
- smoke_pypy38:
|
||||
dir: python/smoke
|
||||
run: PYTHON=pypy3.8 VERSION=3.8 ./venv.sh
|
||||
- smoke_pypy39:
|
||||
dir: python/smoke
|
||||
run: PYTHON=pypy3.9 VERSION=3.9 ./venv.sh
|
||||
- pyproject_pytest:
|
||||
dir: pyproject-rpm-macros/tests
|
||||
run: ./mocktest.sh python-pytest
|
||||
@@ -45,8 +78,18 @@
|
||||
required_packages:
|
||||
- gcc
|
||||
- virtualenv
|
||||
- python3.9-devel
|
||||
- tox
|
||||
- python2.7
|
||||
- python3.6
|
||||
- python3.7
|
||||
- python3.8
|
||||
- python3.9
|
||||
- python3.10-devel
|
||||
- python3.11-devel
|
||||
- python3.12-devel
|
||||
- python2-devel
|
||||
- pypy3.8-devel
|
||||
- pypy3.9-devel
|
||||
- python3-tox
|
||||
- dnf
|
||||
- mock
|
||||
- rpmdevtools
|
||||
|
||||
Reference in New Issue
Block a user