Compare commits

..

10 Commits

Author SHA1 Message Date
Miro Hrončok fbeaddaea8 CI: Make pypy3.7 optional, as it was retired on Fedora 37+ 2022-11-25 13:23:32 +01:00
Miro Hrončok 7c86179926 CI: Add Python 3.12 2022-11-25 12:53:14 +01:00
Miro Hrončok d6ac38c0a6 Update to 3.27.1 2022-11-25 12:25:25 +01:00
Miro Hrončok 83c7b43fe1 Update the test comment: the package name is different for a long time 2022-11-25 12:25:25 +01:00
Miro Hrončok 9100fc98b1 Relax the minimal tomli version to support Fedora 35 and 36 2022-09-14 16:08:44 +02:00
Miro Hrončok 066e7174f8 Update to 3.26.0 2022-09-14 14:52:45 +02:00
Fedora Release Engineering b1d265dfe5 Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 23:01:41 +00:00
Lumir Balhar 95d829b80a Fix names of dependencies for tests in CI 2022-07-14 09:05:36 +02:00
Lumir Balhar fc33709c23 Update to 3.25.1 2022-07-13 10:49:15 +02:00
Python Maint 3646d9e27b Rebuilt for Python 3.11 2022-06-13 19:56:57 +02:00
3 changed files with 58 additions and 7 deletions
+12 -4
View File
@@ -17,7 +17,7 @@
%global py3_shebang_flags %(echo %py3_shebang_flags | sed s/s//)
Name: python-tox
Version: 3.28.0
Version: 3.27.1
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,18 +122,21 @@ 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
View File
@@ -1 +1 @@
SHA512 (tox-3.28.0.tar.gz) = 15c2b5e8f3220cc5be436d5eb0b460fa06ecb04c639f45d31fba284d23743d754e85dfe72fe6a1945f4e3aa094278911834e85c6d973972a3179c905178dec6e
SHA512 (tox-3.27.1.tar.gz) = 89be82a1e0374ce3e281e63bdf36d1619878c46ba5e2a3b45ee28ed3a3ab13b1f7030ad27efabb866a084fb813d1e146ad9fa81f22580904d0e261a94fde0689
+45 -2
View File
@@ -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