churchyard / rpms / pytest

Forked from rpms/pytest 6 years ago
Clone
9c5eb1f
Name:           pytest
d097825
%global base_version 7.3.1
2733420
#global prerelease ...
7faf670
Version:        %{base_version}%{?prerelease:~%{prerelease}}
3ecc09a
Release:        2%{?dist}
9c5eb1f
Summary:        Simple powerful testing with Python
9c5eb1f
License:        MIT
ed8c0c8
URL:            https://pytest.org
b62f2ef
Source:         %{pypi_source pytest %{base_version}%{?prerelease}}
e410028
# see https://github.com/pytest-dev/pytest/issues/10042#issuecomment-1237132867
e410028
Patch:          pytest-7.1.3-fix-xfails.patch
3ecc09a
# Filter new pkg_resources deprecations, merged upstream
3ecc09a
Patch:          https://github.com/pytest-dev/pytest/pull/10938.patch
6f4d0d8
5ca8272
# Remove -s from Python shebang,
5ca8272
# ensure that packages installed with pip to user locations are testable
5ca8272
# https://bugzilla.redhat.com/2152171
5ca8272
%undefine _py3_shebang_s
5ca8272
38c4b45
# When building pytest for the first time with new Python version
5dd3a01
# we might not yet have all the BRs, those conditionals allow us to do that.
38c4b45
d2d1e56
# This can be used to disable all tests for faster bootstrapping.
d2d1e56
# The tests are enabled by default except when building on RHEL/ELN
d2d1e56
# (to avoid pulling in extra dependencies into next RHEL).
d2d1e56
%bcond tests %{undefined rhel}
5dd3a01
5dd3a01
# Only disabling the optional tests is a more complex but careful approach
e1fdcee
# Pytest will skip the related tests, so we only conditionalize the BRs
ab21a10
%bcond optional_tests %{with tests}
e1fdcee
5dd3a01
# To run the tests in %%check we use pytest-timeout
5dd3a01
# When building pytest for the first time with new Python version
5dd3a01
# that is not possible as it depends on pytest
ab21a10
%bcond timeout %{with tests}
5dd3a01
f3561b1
# When building pytest for the first time with new Python version
f3561b1
# we also don't have sphinx yet and cannot build docs.
d2d1e56
# The docs are enabled by default except when building on RHEL/ELN
d2d1e56
# (to avoid pulling in extra dependencies into next RHEL).
d2d1e56
%bcond docs %{undefined rhel}
f3561b1
5dd3a01
BuildRequires:  python3-devel
2c2417a
BuildRequires:  pyproject-rpm-macros >= 0-51
e1fdcee
5dd3a01
%if %{with tests}
2c2417a
# we avoid using %%pyproject_buildrequires -x testing as it mixes optional and non-optional deps
ffcb7c7
BuildRequires:  python3-attrs >= 19.2
7faf670
BuildRequires:  python3-hypothesis >= 3.56
7faf670
BuildRequires:  python3-pygments >= 2.7.2
5dd3a01
BuildRequires:  python3-xmlschema
e1fdcee
%if %{with optional_tests}
3a742ba
BuildRequires:  python3-argcomplete
0c7408f
#BuildRequires:  python3-asynctest -- not packaged in Fedora
111df27
BuildRequires:  python3-decorator
e1fdcee
BuildRequires:  python3-jinja2
1606af3
BuildRequires:  python3-mock
e1fdcee
BuildRequires:  python3-nose
1606af3
BuildRequires:  python3-numpy
c494c2a
BuildRequires:  python3-pexpect
0c7408f
BuildRequires:  python3-pytest-xdist
e1fdcee
BuildRequires:  python3-twisted
0c7408f
BuildRequires:  /usr/bin/lsof
e1fdcee
%endif
5dd3a01
%if %{with timeout}
5dd3a01
BuildRequires:  python3-pytest-timeout
5dd3a01
%endif
5dd3a01
%endif
e1fdcee
5dd3a01
%if %{with docs}
5dd3a01
BuildRequires:  %{_bindir}/rst2html
8aeca55
# pluggy >= 1 is needed to build the docs, older versions are allowed on runtime:
8aeca55
BuildRequires:  python3-pluggy >= 1
5dd3a01
BuildRequires:  python3-pygments-pytest
e60217f
BuildRequires:  python3-Pallets-Sphinx-Themes
5dd3a01
BuildRequires:  python3-sphinx
5dd3a01
BuildRequires:  python3-sphinx-removed-in
5dd3a01
BuildRequires:  python3-sphinxcontrib-trio
c322ce5
# See doc/en/conf.py -- sphinxcontrib.inkscapeconverter is only used when inkscape is available
c322ce5
# we don't BR inkscape so we generally don't need it, but in case inkscape is installed accidentally:
c322ce5
BuildRequires:  (python3-sphinxcontrib-inkscapeconverter if inkscape)
5dd3a01
BuildRequires:  make
5dd3a01
%endif
5dd3a01
5dd3a01
BuildArch:      noarch
5dd3a01
5dd3a01
%description
0c7408f
The pytest framework makes it easy to write small tests, yet scales to support
0c7408f
complex functional testing for applications and libraries.
5dd3a01
5dd3a01
5dd3a01
%package -n python3-%{name}
5dd3a01
Summary:        Simple powerful testing with Python
5fb57be
Provides:       pytest = %{version}-%{release}
9c5eb1f
c65fe99
%description -n python3-%{name}
0c7408f
The pytest framework makes it easy to write small tests, yet scales to support
0c7408f
complex functional testing for applications and libraries.
3a742ba
2c2417a
9c5eb1f
%prep
7faf670
%autosetup -p1 -n %{name}-%{base_version}%{?prerelease}
9c5eb1f
46cdf54
# Between 7.2.0 and 7.2.1 the tests were updated for pygments 2.14.
46cdf54
# See https://github.com/pytest-dev/pytest/pull/10632 + 10637 (backport to 7.2).
46cdf54
# To make the tests work with pygments 2.13, we set the added {endline}s to empty.
46cdf54
# Once pygments 2.14+ is omnipresent, feel free to remove this hack,
46cdf54
# but bump the minimal BuildRequired version of python3-pygments to 2.14.
7988e82
%if v"0%(%{python3} -c "import pygments; print(pygments.__version__)" 2>/dev/null)" < v"2.14~~"
46cdf54
sed -i 's/"endline": "\\x1b\[90m\\x1b\[39;49;00m",/"endline": "",/' testing/conftest.py
46cdf54
%endif
46cdf54
2c2417a
2c2417a
%generate_buildrequires
2c2417a
%pyproject_buildrequires -r
2c2417a
2c2417a
9c5eb1f
%build
2c2417a
%pyproject_wheel
f3561b1
f3561b1
%if %{with docs}
c65fe99
for l in doc/* ; do
2c2417a
  %make_build -C $l html PYTHONPATH=%{pyproject_build_lib}
c65fe99
done
c65fe99
for f in README CHANGELOG CONTRIBUTING ; do
c65fe99
  rst2html ${f}.rst > ${f}.html
c65fe99
done
f3561b1
%endif
3a742ba
2c2417a
9c5eb1f
%install
2c2417a
%pyproject_install
217ff30
%pyproject_save_files _pytest pytest py
2c2417a
111df27
mv %{buildroot}%{_bindir}/pytest %{buildroot}%{_bindir}/pytest-%{python3_version}
111df27
ln -snf pytest-%{python3_version} %{buildroot}%{_bindir}/pytest-3
111df27
mv %{buildroot}%{_bindir}/py.test %{buildroot}%{_bindir}/py.test-%{python3_version}
fb09380
ln -snf py.test-%{python3_version} %{buildroot}%{_bindir}/py.test-3
9c5eb1f
5fb57be
# We use 3.X per default
5fb57be
ln -snf pytest-%{python3_version} %{buildroot}%{_bindir}/pytest
5fb57be
ln -snf py.test-%{python3_version} %{buildroot}%{_bindir}/py.test
746b808
f3561b1
%if %{with docs}
c65fe99
mkdir -p _htmldocs/html
c65fe99
for l in doc/* ; do
c65fe99
  # remove hidden file
c65fe99
  rm ${l}/_build/html/.buildinfo
c65fe99
  mv ${l}/_build/html _htmldocs/html/${l##doc/}
c65fe99
done
f3561b1
%endif
c65fe99
9c5eb1f
# remove shebangs from all scripts
9376c2e
find %{buildroot}%{python3_sitelib} \
c65fe99
     -name '*.py' \
9c5eb1f
     -exec sed -i -e '1{/^#!/d}' {} \;
9c5eb1f
2c2417a
9c5eb1f
%check
d2d1e56
%if %{with tests}
e60217f
%global __pytest %{buildroot}%{_bindir}/pytest
6626a91
# optional_tests deps contain pytest-xdist, so we can use it to run tests faster
2733420
%pytest testing %{?with_timeout:--timeout=30} %{?with_optional_tests:-n auto} -rs
d2d1e56
%else
d2d1e56
%pyproject_check_import
5dd3a01
%endif
38c4b45
2c2417a
2c2417a
%files -n python3-%{name} -f %{pyproject_files}
f3561b1
%if %{with docs}
746b808
%doc CHANGELOG.html
746b808
%doc README.html
746b808
%doc CONTRIBUTING.html
746b808
%doc _htmldocs/html
f3561b1
%endif
5fb57be
%{_bindir}/pytest
111df27
%{_bindir}/pytest-3
111df27
%{_bindir}/pytest-%{python3_version}
5fb57be
%{_bindir}/py.test
fb09380
%{_bindir}/py.test-3
f71e7ff
%{_bindir}/py.test-%{python3_version}
2c2417a
3a742ba
9c5eb1f
%changelog
3ecc09a
* Mon Apr 24 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.1-2
3ecc09a
- Fix build with setuptools >= 67.5.0
3ecc09a
- Fixes: rhbz#2188982
3ecc09a
d097825
* Mon Apr 17 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.1-1
d097825
- Update to 7.3.1
d097825
- Changelog: https://docs.pytest.org/en/stable/changelog.html#pytest-7-3-1-2023-04-14
d097825
- Fixes: rhbz#2186895
d097825
ffcb7c7
* Sun Apr 09 2023 Miro Hrončok <mhroncok@redhat.com> - 7.3.0-1
ffcb7c7
- Update to 7.3.0
ffcb7c7
- Changelog: https://docs.pytest.org/en/stable/changelog.html#pytest-7-3-0-2023-04-08
ffcb7c7
- Fixes: rhbz#2185393
ffcb7c7
967bcac
* Fri Mar 24 2023 Miro Hrončok <mhroncok@redhat.com> - 7.2.2-1
967bcac
- Update to 7.2.2
967bcac
- Changelog: https://docs.pytest.org/en/7.2.x/changelog.html#pytest-7-2-2-2023-03-03
967bcac
- Fixes: rhbz#2175310
967bcac
d2d1e56
* Fri Feb 10 2023 Stephen Gallagher <sgallagh@redhat.com> - 7.2.1-2
d2d1e56
- Don't build tests and docs on RHEL to reduce dependencies
d2d1e56
28b5917
* Fri Jan 27 2023 Miro Hrončok <mhroncok@redhat.com> - 7.2.1-1
28b5917
- Update to 7.2.1
28b5917
- Fixes: rhbz#2160925
28b5917
e31836b
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.0-3
e31836b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
e31836b
5ca8272
* Sat Dec 10 2022 Miro Hrončok <mhroncok@redhat.com> - 7.2.0-2
5ca8272
- Remove -s from Python shebang,
5ca8272
  ensure that packages installed with pip to user locations are testable
5ca8272
- Fixes: rhbz#2152171
5ca8272
217ff30
* Tue Nov 01 2022 Lumír Balhar <lbalhar@redhat.com> - 7.2.0-1
217ff30
- Update to 7.2.0
217ff30
Resolves: rhbz#2137514
217ff30
e410028
* Sat Sep  3 2022 Thomas Moschny <thomas.moschny@gmx.de> - 7.1.3-1
e410028
- Update to 7.1.3
e410028
- Fixes: rhbz#2123701
e410028
9491c15
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.2-5
9491c15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
9491c15
6f4d0d8
* Wed Jul 13 2022 Miro Hrončok <mhroncok@redhat.com> - 7.1.2-4
6f4d0d8
- Adjust tests for a last minute Python 3.11 change in the traceback format
6f4d0d8
8add1e4
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 7.1.2-3
8add1e4
- Rebuilt for Python 3.11
8add1e4
8f1d770
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 7.1.2-2
8f1d770
- Bootstrap for Python 3.11
8f1d770
fd2af67
* Fri Apr 08 2022 Lumír Balhar <lbalhar@redhat.com> - 7.1.2-1
fd2af67
- Update to 7.1.2
fd2af67
Resolves: rhbz#2063549
fd2af67
2733420
* Tue Mar 01 2022 Miro Hrončok <mhroncok@redhat.com> - 7.0.1-1
2733420
- Update to 7.0.1
2733420
- Fixes: rhbz#2050629
2733420
7faf670
* Fri Jan 21 2022 Miro Hrončok <mhroncok@redhat.com> - 7.0.0~rc1-1
7faf670
- Update to 7.0.0rc1
7faf670
- Fixes: rhbz#2029764
7faf670
d5e9216
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.5-2
d5e9216
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
d5e9216
7835236
* Wed Sep 15 2021 Charalampos Stratakis <cstratak@redhat.com> - 6.2.5-1
7835236
- Update to 6.2.5
7835236
- Fixes: rhbz#1999270
7835236
55f92cb
* Fri Aug 27 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.4-7
55f92cb
- Enable all tests during package build
55f92cb
8aeca55
* Fri Aug 27 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.4-6
8aeca55
- Allow pluggy >=1.0
8aeca55
a2bad61
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.4-5
a2bad61
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
a2bad61
cad86f7
* Mon Jul 12 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.4-4
cad86f7
- Adjust pytest's own tests for changes in Python 3.10.0b4
cad86f7
ec1d12b
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 6.2.4-3
ec1d12b
- Rebuilt for Python 3.10
ec1d12b
02e4607
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 6.2.4-2
02e4607
- Bootstrap for Python 3.10
02e4607
94ccdd3
* Tue May 04 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.4-1
94ccdd3
- Update to 6.2.4
94ccdd3
- Fixes: rhbz#1956942
94ccdd3
749cacf
* Mon Apr 12 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.3-1
749cacf
- Update to 6.2.3
749cacf
- Fixes: rhbz#1946061
749cacf
cc60242
* Wed Mar 10 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.2-2
cc60242
- Drop redundant build dependency on wcwidth (unused since 6.0.0rc1)
cc60242
0c7408f
* Wed Jan 27 2021 Miro Hrončok <mhroncok@redhat.com> - 6.2.2-1
0c7408f
- Update to 6.2.2
0c7408f
- Update the description
0c7408f
- Fixes: rhbz#1882935
0c7408f
55fb842
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.2-3
55fb842
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
55fb842
eb7b60b
* Wed Jan 20 2021 Miro Hrončok <mhroncok@redhat.com> - 6.0.2-2
eb7b60b
- Workaround the bracketed-paste mode breaking tests with Bash 5.1+
eb7b60b
79cb837
* Sat Sep 12 2020 Thomas Moschny <thomas.moschny@gmx.de> - 6.0.2-1
79cb837
- Update to 6.0.2.
79cb837
931736c
* Thu Aug 06 2020 Miro Hrončok <mhroncok@redhat.com> - 6.0.1-1
931736c
- Update to 6.0.1 (#1862097)
931736c
b50667e
* Tue Jul 28 2020 Miro Hrončok <mhroncok@redhat.com> - 6.0.0~rc1-1
e60217f
- Update to 6.0.0rc1
e60217f
69fd070
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.4.3-2
69fd070
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
69fd070
27d2cbe
* Fri Jun  5 2020 Thomas Moschny <thomas.moschny@gmx.de> - 5.4.3-1
27d2cbe
- Update to 5.4.3.
27d2cbe
5dd3a01
* Fri May 29 2020 Miro Hrončok <mhroncok@redhat.com> - 5.4.2-1
5dd3a01
- Update to 5.4.2 (#1707986)
5dd3a01
329bdb9
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 4.6.10-3
329bdb9
- Rebuilt for Python 3.9
329bdb9
ee15892
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 4.6.10-2
ee15892
- Bootstrap for Python 3.9
ee15892
87954bb
* Fri May 08 2020 Miro Hrončok <mhroncok@redhat.com> - 4.6.10-1
87954bb
- Update to 4.6.10.
87954bb
b97286b
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.9-2
b97286b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b97286b
54872db
* Sun Jan  5 2020 Thomas Moschny <thomas.moschny@gmx.de> - 4.6.9-1
54872db
- Update to 4.6.9.
54872db
9146f9e
* Fri Jan  3 2020 Thomas Moschny <thomas.moschny@gmx.de> - 4.6.8-1
9146f9e
- Update to 4.6.8.
9146f9e
1dbd850
* Fri Dec 06 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.7-1
1dbd850
- Update to 4.6.7
1dbd850
b346051
* Fri Oct 25 2019 Thomas Moschny <thomas.moschny@gmx.de> - 4.6.6-1
b346051
- Update to 4.6.6.
b346051
45b4e94
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.5-4
45b4e94
- Rebuilt for Python 3.8.0rc1 (#1748018)
45b4e94
b58d634
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.5-3
b58d634
- Rebuilt for Python 3.8
b58d634
8593cc7
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.5-2
8593cc7
- Bootstrap for Python 3.8
bad5569
1b7f4ff
* Wed Aug 14 2019 Thomas Moschny <thomas.moschny@gmx.de> - 4.6.5-1
1b7f4ff
- Update to 4.6.5.
1b7f4ff
- Add missing BR on make.
1b7f4ff
2b2491c
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.4-3
2b2491c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
2b2491c
8535b43
* Tue Jul 23 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.4-2
8535b43
- Fix a bad conflict
8535b43
9376c2e
* Mon Jul 01 2019 Miro Hrončok <mhroncok@redhat.com> - 4.6.4-1
9376c2e
- Update to 4.6.4, move python2-pytest to its own source package
5fb57be
- Make /usr/bin/pytest and /usr/bin/py.test Python 3
9376c2e
f5b9cfb
* Fri Jun 21 2019 Petr Viktorin <pviktori@redhat.com> - 4.4.1-2
f5b9cfb
- Remove optional test dependencies for Python 2 entirely
f5b9cfb
983595c
* Tue Apr 16 2019 Thomas Moschny <thomas.moschny@gmx.de> - 4.4.1-1
983595c
- Update to 4.4.1 (see PR#9).
983595c
- Remove test dependencies on python2-hypothesis and python2-twisted (see PR#10).
983595c
b55b1f5
* Sat Mar 16 2019 Miro Hrončok <mhroncok@redhat.com> - 4.3.1-1
b55b1f5
- Update to 4.3.1
b55b1f5
ed8c0c8
* Tue Mar 12 2019 Miro Hrončok <mhroncok@redhat.com> - 4.3.0-1
ed8c0c8
- Update to 4.3.0 and fix FTBFS (#1671167, #1687384)
ed8c0c8
a738a33
* Mon Feb 18 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.9.3-3
a738a33
- Enable python dependency generator
a738a33
224afcb
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.9.3-2
224afcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
224afcb
317b8c5
* Wed Oct 31 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.9.3-1
317b8c5
- Update to 3.9.3.
317b8c5
a803d60
* Tue Oct 23 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.9.2-1
a803d60
- Update to 3.9.2.
a803d60
a0b520b
* Wed Oct 17 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.9.1-1
a0b520b
- Update to 3.9.1.
a0b520b
090bfd0
* Tue Oct 16 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.8.2-3
090bfd0
- Add python2-pathlib2 runtime requirement (rhbz#1639718).
090bfd0
cc174ac
* Tue Oct 16 2018 Nils Philippsen <nils@redhat.com> - 3.8.2-2
cc174ac
- versionize pluggy dependencies
cc174ac
277aaaa
* Tue Oct 16 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.8.2-1
277aaaa
- Update to 3.8.2.
277aaaa
88e8de8
* Sat Sep 29 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.6.4-1
88e8de8
- Update to 3.6.4.
88e8de8
a85601b
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
a85601b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a85601b
e7e1d2a
* Thu Jul  5 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.6.3-1
e7e1d2a
- Update to 3.6.3.
e7e1d2a
856dae9
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 3.6.2-3
856dae9
- Enable timeout
856dae9
1178966
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 3.6.2-2
972c97d
- Rebuilt for Python 3.7 (without timeout)
1178966
89f7b49
* Thu Jun 28 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.6.2-1
89f7b49
- Update to 3.6.2.
89f7b49
0604d47
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 3.6.1-3
0604d47
- Rebuilt for Python 3.7
0604d47
8c7a3b1
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 3.6.1-2
8c7a3b1
- Bootstrap for Python 3.7
8c7a3b1
25ac1cd
* Tue Jun  5 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.6.1-1
25ac1cd
- Update to 3.6.1.
25ac1cd
8b70d05
* Mon May 28 2018 Miro Hrončok <mhroncok@redhat.com> - 3.6.0-1
8b70d05
- Update to 3.6.0 (#1581692)
8b70d05
- Require and BuildRequire atomicwrites
8b70d05
1487f74
* Sat May 19 2018 Thomas Moschny <thomas.moschny@gmx.de> - 3.5.1-1
1487f74
- Update to 3.5.1.
1487f74
- Build the documentation with Python3.
1487f74
- Update requirements.
1487f74
447afd7
* Thu Mar 15 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.4.2-2
447afd7
- Add Requires for required modules
447afd7
f8ed9b3
* Wed Mar 14 2018 Charalampos Stratakis <cstratak@redhat.com> - 3.4.2-1
f8ed9b3
- Update to 3.4.2
f8ed9b3
c746165
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.3-4
c746165
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c746165
457cd6d
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2.3-3
457cd6d
- Use better Obsoletes for platform-python
457cd6d
64d7e62
* Fri Nov 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.2.3-2
64d7e62
- Remove platform-python subpackage
746b808
- Cleanup conditionals
64d7e62
1382133
* Sat Oct  7 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.3-1
1382133
- Update to 3.2.3.
1382133
08b2080
* Sat Sep  9 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.2-1
1382133
- Update to 3.2.2.
08b2080
- Move BRs to their respective subpackages.
08b2080
- Enable the platform-python subpackage only on F27+.
08b2080
21e4ec5
* Thu Aug 24 2017 Miro Hrončok <mhroncok@redhat.com> - 3.2.1-3
21e4ec5
- Rebuilt for rhbz#1484607
21e4ec5
3a742ba
* Fri Aug 11 2017 Petr Viktorin <pviktori@redhat.com> - 3.2.1-2
3a742ba
- Add subpackage for platform-python (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
3a742ba
ab7a509
* Wed Aug  9 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.2.1-1
ab7a509
- Update to 3.2.1.
ab7a509
4db5422
* Wed Aug 02 2017 Gwyn Ciesla <limburgher@gmail.com> - 3.2.0-1
4db5422
- 3.2.0.
4db5422
415d42f
* Sun Jul 30 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.1.3-1
415d42f
- Update to 3.1.3.
415d42f
- Update BRs.
415d42f
54517ca
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.1-2
54517ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
54517ca
0dd89af
* Sat Jun  3 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.1.1-1
0dd89af
- Update to 3.1.1.
ae3055c
- Add BR on setuptools_scm.
0dd89af
fc407f8
* Wed Mar 15 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.7-1
fc407f8
- Update to 3.0.7.
fc407f8
4efa42b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
4efa42b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4efa42b
9ffb2fd
* Sun Jan 29 2017 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.6-1
9ffb2fd
- Update to 3.0.6.
9ffb2fd
- Drop patch applied upstream.
9ffb2fd
38c4b45
* Tue Dec 13 2016 Miro Hrončok <mhroncok@redhat.com> - 3.0.5-2
38c4b45
- Rebuild for Python 3.6
38c4b45
4553282
* Tue Dec  6 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.5-1
4553282
- Update to 3.0.5.
4553282
5b1f793
* Mon Nov 28 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.4-1
5b1f793
- Update to 3.0.4.
5b1f793
111df27
* Fri Sep 30 2016 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.3-1
111df27
- Update to 3.0.3.
111df27
- Update requirements.
111df27
c845a7a
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.2-2
c845a7a
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
c845a7a
4da2211
* Fri Jun  3 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.2-1
4da2211
- Update to 2.9.2.
4da2211
4986f1e
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
4986f1e
- fix source URL
4986f1e
c65fe99
* Sat Apr  9 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.1-1
c65fe99
- Update to 2.9.1.
c65fe99
- Packaging updates.
c65fe99
Orion Poplawski fffc79a
* Tue Feb 2 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8.7-2
Orion Poplawski fffc79a
- Use new python macros
Orion Poplawski fffc79a
- Fix python3 package file ownership
Orion Poplawski fffc79a
add628a
* Sun Jan 24 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.7-1
add628a
- Update to 2.8.7.
add628a
fa2bfbd
* Fri Jan 22 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.6-1
fa2bfbd
- Update to 2.8.6.
fa2bfbd
Orion Poplawski ff2e495
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.5-1
Orion Poplawski ff2e495
- Update to 2.8.5
Orion Poplawski ff2e495
Orion Poplawski 9ebb9bd
* Wed Dec 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2.8.2-3
Orion Poplawski 9ebb9bd
- Re-enable pexpect in tests
Orion Poplawski 9ebb9bd
81d05d0
* Wed Nov 11 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.2-2
81d05d0
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
81d05d0
c94cbd4
* Tue Oct 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.2-1
c94cbd4
- Update to 2.8.2.
c94cbd4
Robert Kuska e037be8
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.7.3-2
Robert Kuska e037be8
- Rebuilt for Python3.5 rebuild
Robert Kuska e037be8
fb09380
* Thu Sep 17 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
fb09380
- Update to 2.7.3.
fb09380
- Provide additional symlinks to the pytest executables (rhbz#1249891).
fb09380
Orion Poplawski 13edb5c
* Mon Sep 14 2015 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
Orion Poplawski 13edb5c
- Provide python2-pytest, use python_provide macro
Orion Poplawski 13edb5c
f71e7ff
* Thu Jun 25 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
f71e7ff
- Update to 2.7.2.
f71e7ff
- Small fixes.
f71e7ff
2cf870c
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.1-2
2cf870c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2cf870c
68f6d02
* Sat May 23 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
68f6d02
- Update to 2.7.1.
68f6d02
77ca0cf
* Mon Apr 20 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.0-1
77ca0cf
- Update to 2.7.0.
77ca0cf
- Apply updated Python packaging guidelines.
77ca0cf
- Mark LICENSE with %%license.
77ca0cf
4ac7641
* Tue Dec  2 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.4-1
4ac7641
- Update to 2.6.4.
4ac7641
d55e5ca
* Sat Oct 11 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.3-1
d55e5ca
- Update to 2.6.3.
d55e5ca
ef0eb6b
* Fri Aug  8 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.1-1
ef0eb6b
- Update to 2.6.1.
ef0eb6b
d497904
* Fri Aug  1 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.6.0-1
d497904
- Update to 2.6.0.
d497904
f2bce57
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3
f2bce57
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f2bce57
5e35a10
* Fri May 09 2014 Dennis Gilmore <dennis@ausil.us> - 2.5.2-2
5e35a10
- Redbuild for python 3.4
5e35a10
48eb4ca
* Fri Apr 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
48eb4ca
- Update to 2.5.2.
48eb4ca
f742f49
* Mon Oct  7 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-2
f742f49
- Only run tests from the 'testing' subdir in %%check.
f742f49
71f464f
* Sat Oct  5 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.2-1
71f464f
- Update to 2.4.2.
71f464f
- Add buildroot's bindir to PATH while running the testsuite.
71f464f
d9b4aea
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.5-4
d9b4aea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d9b4aea
ea6a47f
* Thu Jun 13 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-3
ea6a47f
- Disable tests using pexpect for now, fails on F19.
ea6a47f
5c13630
* Wed Jun 12 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-2
0560a6d
- Use python-sphinx for rhel > 6 (rhbz#973318).
5c13630
- Update BR to use python-pexpect instead of pexpect.
5c13630
6e12e2a
* Sat May 25 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.5-1
6e12e2a
- Update to 2.3.5.
0b8017b
- Docutils needed now to build README.html.
3bf32da
- Add some BR optionally used by the testsuite.
6e12e2a
73bee36
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
73bee36
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
73bee36
bb07fc2
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.4-1
bb07fc2
- Update to 2.3.4.
bb07fc2
388c87f
* Sun Oct 28 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.2-1
388c87f
- Update to 2.3.2.
388c87f
e5fa0a8
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
e5fa0a8
- Update to 2.3.1.
e5fa0a8
- Re-enable some tests, ignore others.
e5fa0a8
- Docs are available in English and Japanese now.
e5fa0a8
8205b3a
* Thu Oct 11 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-4
8205b3a
- Add conditional for sphinx on rhel.
8205b3a
- Remove rhel logic from with_python3 conditional.
8328a81
- Disable failing tests for Python3.
8205b3a
d1e937b
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.2.4-3
d1e937b
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
d1e937b
b3fe38d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.4-2
b3fe38d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b3fe38d
16bbfe7
* Wed Jun  6 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.4-1
16bbfe7
- Update to 2.2.4.
16bbfe7
f908393
* Wed Feb  8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.3-1
f908393
- Update to 2.2.3.
f908393
ea97d03
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.1-2
ea97d03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ea97d03
281bb38
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
281bb38
- Update to 2.2.1.
281bb38
96521b9
* Tue Dec 13 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.0-1
96521b9
- Update to 2.2.0.
96521b9
6c10783
* Wed Oct 26 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.3-1
6c10783
- Update to 2.1.3.
6c10783
6c10783
* Tue Sep 27 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.2-1
6c10783
- Update to 2.1.2.
6c10783
5cb33d7
* Sat Sep  3 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-2
5cb33d7
- Fix: python3 dependencies.
5cb33d7
fb76f74
* Sun Aug 28 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
fb76f74
- Update to 2.1.1.
fb76f74
cc8ea75
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-2
cc8ea75
- Update Requires and BuildRequires tags.
cc8ea75
9c5eb1f
* Tue Aug  9 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.0-1
9c5eb1f
- Update to 2.1.0.
9c5eb1f
9c5eb1f
* Mon May 30 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.3-1
9c5eb1f
- Update to 2.0.3.
9c5eb1f
9c5eb1f
* Thu Mar 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.2-1
9c5eb1f
- Update to 2.0.2.
9c5eb1f
9c5eb1f
* Sun Jan 16 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.0.0-1
9c5eb1f
- New package.