Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2ec7b8b81 | |||
| fbeaddaea8 | |||
| 7c86179926 | |||
| d6ac38c0a6 | |||
| 83c7b43fe1 | |||
| 9100fc98b1 | |||
| 066e7174f8 | |||
| b1d265dfe5 | |||
| 95d829b80a | |||
| fc33709c23 | |||
| 3646d9e27b |
+25
-2
@@ -5,7 +5,7 @@
|
||||
# 1) Build --without tests (the default)
|
||||
# (e.g. fedpkg mockbuild)
|
||||
# 2) Install the built package
|
||||
# (e.g. mock install ./results_python-tox/.../python3-tox-...rpm)
|
||||
# (e.g. mock install ./results_python-tox/.../tox-...rpm)
|
||||
# 3) Build again --with tests (and internet connection)
|
||||
# (e.g. fedpkg mockbuild --enable-network --no-clean-all --with tests)
|
||||
# The Fedora CI tests do this.
|
||||
@@ -17,7 +17,7 @@
|
||||
%global py3_shebang_flags %(echo %py3_shebang_flags | sed s/s//)
|
||||
|
||||
Name: python-tox
|
||||
Version: 3.25.0
|
||||
Version: 3.28.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Virtualenv-based automation of test activities
|
||||
|
||||
@@ -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}
|
||||
@@ -117,6 +122,24 @@ Obsoletes: python3-tox < 3.24.4-2
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Dec 18 2022 Miro Hrončok <mhroncok@redhat.com> - 3.28.0-1
|
||||
- Update to 3.28.0
|
||||
|
||||
* Fri Nov 25 2022 Miro Hrončok <mhroncok@redhat.com> - 3.27.1-1
|
||||
- Update to 3.27.1
|
||||
|
||||
* 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
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
SHA512 (tox-3.25.0.tar.gz) = d98ed9f589c751ddc187618caf509fbc64e99f1b5eafeb9cbd919d94d10e15a55331658121efabac53ef07adeb71af15da8be86fc4f35688a8f9b93bf3e723d1
|
||||
SHA512 (tox-3.28.0.tar.gz) = 15c2b5e8f3220cc5be436d5eb0b460fa06ecb04c639f45d31fba284d23743d754e85dfe72fe6a1945f4e3aa094278911834e85c6d973972a3179c905178dec6e
|
||||
|
||||
+8
-6
@@ -54,9 +54,12 @@
|
||||
- smoke311:
|
||||
dir: python/smoke
|
||||
run: VERSION=3.11 ./venv.sh
|
||||
- smoke_pypy37:
|
||||
- smoke312:
|
||||
dir: python/smoke
|
||||
run: PYTHON=pypy3.7 VERSION=3.7 ./venv.sh
|
||||
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
|
||||
@@ -80,11 +83,10 @@
|
||||
- python3.7
|
||||
- python3.8
|
||||
- python3.9
|
||||
- python3.10
|
||||
- python3.11
|
||||
- python3.10-devel
|
||||
- python3.11-devel
|
||||
- python3.12-devel
|
||||
- python2-devel
|
||||
- python3-devel
|
||||
- pypy3.7-devel
|
||||
- pypy3.8-devel
|
||||
- pypy3.9-devel
|
||||
- python3-tox
|
||||
|
||||
Reference in New Issue
Block a user