|
 |
60f9c3d |
%if 0%{?epel}
|
|
 |
60f9c3d |
# disable build of docs and tests for epel because of missing dependencies:
|
|
 |
60f9c3d |
# - python3-ipykernel
|
|
 |
60f9c3d |
# - python3-jupyter-client
|
|
 |
60f9c3d |
# - python3-nbformat
|
|
 |
60f9c3d |
# - python3-testpath
|
|
 |
60f9c3d |
# tests and docs subpackages are also disabled
|
|
 |
60f9c3d |
%bcond_with check
|
|
 |
60f9c3d |
%bcond_with doc
|
|
 |
60f9c3d |
%else
|
|
 |
1bbe771 |
%bcond_without check
|
|
 |
1bbe771 |
%bcond_without doc
|
|
 |
60f9c3d |
%endif
|
|
Thomas Spura |
40fb0db |
|
|
Shahms King |
44d2679 |
Name: ipython
|
|
 |
9074156 |
Version: 8.1.0
|
|
 |
f7c85fb |
Release: 1%{?dist}
|
|
Shahms King |
44d2679 |
Summary: An enhanced interactive Python shell
|
|
Shahms King |
44d2679 |
|
|
 |
dfd5875 |
# See bug #603178 for a quick overview for the choice of licenses
|
|
 |
dfd5875 |
# most files are under BSD and just a few under Python or MIT
|
|
 |
dfd5875 |
# There are some extensions released under GPLv2+
|
|
 |
dfd5875 |
License: (BSD and MIT and Python) and GPLv2+
|
|
Thomas Spura |
aad6999 |
URL: http://ipython.org/
|
|
 |
74bce4d |
Source0: %pypi_source
|
|
 |
74bce4d |
|
|
Shahms King |
44d2679 |
BuildArch: noarch
|
|
 |
0f97376 |
BuildRequires: make
|
|
Thomas Spura |
5e59364 |
BuildRequires: python3-devel
|
|
 |
7f044bb |
BuildRequires: python3-setuptools
|
|
 |
f7c85fb |
BuildRequires: python3-stack-data
|
|
Thomas Spura |
aad6999 |
|
|
Thomas Spura |
94e35d0 |
%if %{with doc}
|
|
 |
eb72a81 |
BuildRequires: python3-sphinx
|
|
 |
bff004b |
BuildRequires: python3-sphinx_rtd_theme
|
|
 |
42dcf61 |
BuildRequires: python3-ipykernel
|
|
 |
3d1746b |
BuildRequires: python3-matplotlib
|
|
 |
3d1746b |
BuildRequires: python3-numpy
|
|
Thomas Spura |
94e35d0 |
%endif
|
|
Thomas Spura |
aad6999 |
|
|
Thomas Spura |
94e35d0 |
%if %{with check}
|
|
Thomas Spura |
9a7bb2a |
BuildRequires: python3-Cython
|
|
Thomas Spura |
4e20f2d |
BuildRequires: python3-matplotlib
|
|
 |
028cff7 |
BuildRequires: python3-matplotlib-inline
|
|
Thomas Spura |
4e20f2d |
BuildRequires: python3-pymongo
|
|
Orion Poplawski |
f404de9 |
BuildRequires: python3-tornado >= 4.0
|
|
Thomas Spura |
5e59364 |
BuildRequires: python3-zmq
|
|
Thomas Spura |
5e59364 |
BuildRequires: python3-zmq-tests
|
|
 |
eb72a81 |
BuildRequires: python3-nbformat
|
|
 |
eb72a81 |
BuildRequires: python3-pytest
|
|
 |
f7c85fb |
BuildRequires: python3-pytest-asyncio
|
|
 |
eb72a81 |
BuildRequires: python3-ipykernel
|
|
 |
eb72a81 |
BuildRequires: python3-jupyter-client
|
|
 |
eb72a81 |
BuildRequires: python3-testpath
|
|
Thomas Spura |
40fb0db |
# for frontend
|
|
Thomas Spura |
4e20f2d |
BuildRequires: python3-pygments
|
|
 |
f09ccf6 |
# for latex
|
|
 |
f09ccf6 |
BuildRequires: /usr/bin/dvipng
|
|
 |
f09ccf6 |
BuildRequires: tex(amsmath.sty)
|
|
 |
f09ccf6 |
BuildRequires: tex(amssymb.sty)
|
|
 |
f09ccf6 |
BuildRequires: tex(amsthm.sty)
|
|
 |
f09ccf6 |
BuildRequires: tex(bm.sty)
|
|
 |
0f97376 |
%endif
|
|
Thomas Spura |
40fb0db |
|
|
Thomas Spura |
8f9f3a7 |
%global ipython_desc_base \
|
|
Thomas Spura |
8f9f3a7 |
IPython provides a replacement for the interactive Python interpreter with\
|
|
Thomas Spura |
8f9f3a7 |
extra functionality.\
|
|
Thomas Spura |
8f9f3a7 |
\
|
|
Thomas Spura |
8f9f3a7 |
Main features:\
|
|
Thomas Spura |
8f9f3a7 |
* Comprehensive object introspection.\
|
|
Thomas Spura |
8f9f3a7 |
* Input history, persistent across sessions.\
|
|
Thomas Spura |
8f9f3a7 |
* Caching of output results during a session with automatically generated\
|
|
Thomas Spura |
8f9f3a7 |
references.\
|
|
Thomas Spura |
8f9f3a7 |
* Readline based name completion.\
|
|
Thomas Spura |
8f9f3a7 |
* Extensible system of 'magic' commands for controlling the environment and\
|
|
Thomas Spura |
8f9f3a7 |
performing many tasks related either to IPython or the operating system.\
|
|
Thomas Spura |
8f9f3a7 |
* Configuration system with easy switching between different setups (simpler\
|
|
Thomas Spura |
8f9f3a7 |
than changing $PYTHONSTARTUP environment variables every time).\
|
|
Thomas Spura |
8f9f3a7 |
* Session logging and reloading.\
|
|
Thomas Spura |
8f9f3a7 |
* Extensible syntax processing for special purpose situations.\
|
|
Thomas Spura |
8f9f3a7 |
* Access to the system shell with user-extensible alias system.\
|
|
Thomas Spura |
8f9f3a7 |
* Easily embeddable in other Python programs.\
|
|
Thomas Spura |
8f9f3a7 |
* Integrated access to the pdb debugger and the Python profiler.
|
|
 |
c055309 |
|
|
Shahms King |
44d2679 |
%description
|
|
Thomas Spura |
8f9f3a7 |
%{ipython_desc_base}
|
|
Shahms King |
44d2679 |
|
|
Thomas Spura |
8890cd1 |
%package -n python3-ipython
|
|
Thomas Spura |
8890cd1 |
Summary: An enhanced interactive Python shell
|
|
Thomas Spura |
4ff0c9d |
%{?python_provide:%python_provide python3-ipython}
|
|
 |
eb72a81 |
%{?python_provide:%python_provide python3-ipython-console}
|
|
 |
1c190af |
Provides: ipython3 = %{version}-%{release}
|
|
 |
1761e42 |
Provides: ipython = %{version}-%{release}
|
|
 |
eb72a81 |
Provides: python3-ipython-console = %{version}-%{release}
|
|
 |
eb72a81 |
Obsoletes: python3-ipython-console < 5.3.0-1
|
|
 |
1761e42 |
Conflicts: python2-ipython < 7
|
|
Thomas Spura |
1125183 |
|
|
 |
b430bdd |
BuildRequires: python3-backcall
|
|
Thomas Spura |
faf26ce |
BuildRequires: python3-decorator
|
|
 |
b430bdd |
BuildRequires: python3-jedi >= 0.10
|
|
Thomas Spura |
faf26ce |
BuildRequires: python3-pexpect
|
|
 |
b430bdd |
BuildRequires: python3-pickleshare
|
|
 |
74bce4d |
BuildRequires: python3-prompt-toolkit >= 2
|
|
 |
b430bdd |
BuildRequires: python3-traitlets >= 4.2
|
|
 |
f09ccf6 |
Requires: (tex(amsmath.sty) if /usr/bin/dvipng)
|
|
 |
f09ccf6 |
Requires: (tex(amssymb.sty) if /usr/bin/dvipng)
|
|
 |
f09ccf6 |
Requires: (tex(amsthm.sty) if /usr/bin/dvipng)
|
|
 |
f09ccf6 |
Requires: (tex(bm.sty) if /usr/bin/dvipng)
|
|
Thomas Spura |
eda87c9 |
|
|
 |
eb72a81 |
%description -n python3-ipython
|
|
Thomas Spura |
4d3644e |
%{ipython_desc_base}
|
|
Thomas Spura |
4d3644e |
|
|
Thomas Spura |
1125183 |
This package provides IPython for in a terminal.
|
|
Thomas Spura |
1125183 |
|
|
 |
c3a41eb |
%{?python_extras_subpkg:%python_extras_subpkg -n python3-ipython -i %{python3_sitelib}/*.egg-info notebook}
|
|
 |
c3a41eb |
|
|
Thomas Spura |
feba6ef |
%package -n python3-ipython-sphinx
|
|
Thomas Spura |
feba6ef |
Summary: Sphinx directive to support embedded IPython code
|
|
Thomas Spura |
4ff0c9d |
%{?python_provide:%python_provide python3-ipython-sphinx}
|
|
 |
eb72a81 |
Requires: python3-ipython = %{version}-%{release}
|
|
Thomas Spura |
f551050 |
BuildRequires: python3-sphinx
|
|
Thomas Spura |
feba6ef |
Requires: python3-sphinx
|
|
Thomas Spura |
feba6ef |
|
|
Thomas Spura |
feba6ef |
%description -n python3-ipython-sphinx
|
|
Thomas Spura |
feba6ef |
%{ipython_desc_base}
|
|
Thomas Spura |
feba6ef |
|
|
Thomas Spura |
feba6ef |
This package contains the ipython sphinx extension.
|
|
Thomas Spura |
feba6ef |
|
|
 |
60f9c3d |
%if %{with check}
|
|
Thomas Spura |
8890cd1 |
%package -n python3-ipython-tests
|
|
Thomas Spura |
8890cd1 |
Summary: Tests for %{name}
|
|
Thomas Spura |
4ff0c9d |
%{?python_provide:%python_provide python3-ipython-tests}
|
|
 |
b430bdd |
Requires: python3-ipykernel
|
|
 |
eb72a81 |
Requires: python3-ipython = %{version}-%{release}
|
|
 |
b430bdd |
Requires: python3-jupyter-client
|
|
 |
eb72a81 |
Requires: python3-nbformat
|
|
 |
eb72a81 |
Requires: python3-pytest
|
|
 |
f7c85fb |
Requires: python3-pytest-asyncio
|
|
 |
eb72a81 |
Requires: python3-testpath
|
|
 |
b430bdd |
Requires: python3-zmq-tests
|
|
 |
f09ccf6 |
# For latex
|
|
 |
f09ccf6 |
Requires: /usr/bin/dvipng
|
|
 |
f09ccf6 |
Requires: tex(amsmath.sty)
|
|
 |
f09ccf6 |
Requires: tex(amssymb.sty)
|
|
 |
f09ccf6 |
Requires: tex(amsthm.sty)
|
|
 |
f09ccf6 |
Requires: tex(bm.sty)
|
|
 |
b430bdd |
|
|
Thomas Spura |
8890cd1 |
%description -n python3-ipython-tests
|
|
Thomas Spura |
8890cd1 |
This package contains the tests of %{name}.
|
|
Thomas Spura |
375c18d |
You can check this way, if ipython works on your platform.
|
|
 |
60f9c3d |
%endif
|
|
Thomas Spura |
8890cd1 |
|
|
 |
eb72a81 |
%if %{with doc}
|
|
Thomas Spura |
e290d79 |
%package -n python3-ipython-doc
|
|
Thomas Spura |
8890cd1 |
Summary: Documentation for %{name}
|
|
Thomas Spura |
4ff0c9d |
%{?python_provide:%python_provide python3-ipython-doc}
|
|
Thomas Spura |
e290d79 |
%description -n python3-ipython-doc
|
|
Thomas Spura |
8890cd1 |
This package contains the documentation of %{name}.
|
|
 |
0f97376 |
%endif
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
|
|
Shahms King |
44d2679 |
%prep
|
|
 |
74bce4d |
%autosetup -p1
|
|
 |
a0d71d1 |
|
|
 |
7f044bb |
# use setuptools to have RPM generated requires
|
|
 |
7f044bb |
sed -i 's/from distutils.core import setup/from setuptools import setup/' setup.py
|
|
 |
7f044bb |
|
|
 |
dfd5875 |
# delete bundling libs
|
|
 |
dfd5875 |
pushd IPython/external
|
|
Thomas Spura |
1ac0a7b |
ls -l
|
|
Thomas Spura |
1ac0a7b |
ls -l *
|
|
 |
dfd5875 |
|
|
 |
dfd5875 |
popd
|
|
Shahms King |
44d2679 |
|
|
 |
6cd3346 |
# Remove shebangs
|
|
 |
6cd3346 |
sed -i '1d' $(grep -lr '^#!/usr/' IPython)
|
|
 |
6cd3346 |
|
|
 |
55250a4 |
find . -name '*.py' -print0 | xargs -0 sed -i '1s|^#!python|#!%{__python3}|'
|
|
Thomas Spura |
e290d79 |
|
|
Shahms King |
44d2679 |
%build
|
|
 |
55250a4 |
%py3_build
|
|
Shahms King |
44d2679 |
|
|
Shahms King |
44d2679 |
|
|
Thomas Spura |
94e35d0 |
%if %{with doc}
|
|
 |
eb72a81 |
pushd docs
|
|
 |
4ced9fe |
PYTHONPATH=.. make html SPHINXBUILD='sphinx-build-3 -D intersphinx_timeout=1'
|
|
Thomas Spura |
94e35d0 |
mkdir -p build/html/
|
|
 |
eb72a81 |
rm -rf build/html/.buildinfo
|
|
 |
eb72a81 |
popd
|
|
Thomas Spura |
94e35d0 |
%endif
|
|
Thomas Spura |
94e35d0 |
|
|
Thomas Spura |
94e35d0 |
|
|
Shahms King |
44d2679 |
%install
|
|
 |
55250a4 |
%py3_install
|
|
 |
efa169a |
|
|
 |
1761e42 |
# link the manpage to ipython3
|
|
 |
55250a4 |
mv %{buildroot}%{_mandir}/man1/ipython{,3}.1
|
|
 |
1761e42 |
ln -s ./ipython3.1 %{buildroot}%{_mandir}/man1/ipython.1
|
|
Orion Poplawski |
b773f86 |
|
|
Thomas Spura |
19eb4e6 |
|
|
Thomas Spura |
94e35d0 |
%if %{with check}
|
|
Thomas Spura |
aad6999 |
%check
|
|
Thomas Spura |
4e20f2d |
# Ensure that the user's .pythonrc.py is not invoked during any tests.
|
|
Thomas Spura |
4e20f2d |
export PYTHONSTARTUP=""
|
|
 |
1cc48cf |
# Koji builders can be slow, especially on arms, we scale timeouts 4 times
|
|
 |
1cc48cf |
export IPYTHON_TESTING_TIMEOUT_SCALE=4
|
|
 |
f7c85fb |
# To prevent _pytest.pathlib.ImportPathMismatchError, we are
|
|
 |
f7c85fb |
# testing directly in buildroot
|
|
 |
f7c85fb |
pushd %{buildroot}%{python3_sitelib}/IPython
|
|
 |
c92b8a8 |
%pytest
|
|
 |
f7c85fb |
rm -rf .pytest_cache
|
|
 |
f7c85fb |
popd
|
|
 |
60f9c3d |
%else
|
|
 |
60f9c3d |
rm -r %{buildroot}%{python3_sitelib}/IPython/*/tests
|
|
Thomas Spura |
94e35d0 |
%endif
|
|
 |
efa169a |
|
|
Thomas Spura |
e290d79 |
%files -n python3-ipython
|
|
Thomas Spura |
e290d79 |
%{_bindir}/ipython3
|
|
 |
1761e42 |
%{_bindir}/ipython
|
|
 |
1761e42 |
%{_mandir}/man1/ipython.*
|
|
 |
55250a4 |
%{_mandir}/man1/ipython3.*
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
%dir %{python3_sitelib}/IPython
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/external
|
|
Thomas Spura |
e290d79 |
%{python3_sitelib}/IPython/__pycache__/
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/*.py*
|
|
Thomas Spura |
8890cd1 |
%dir %{python3_sitelib}/IPython/testing
|
|
Thomas Spura |
e290d79 |
%{python3_sitelib}/IPython/testing/__pycache__/
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/testing/*.py*
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/testing/plugin
|
|
 |
7f044bb |
%{python3_sitelib}/ipython-%{version}-py%{python3_version}.egg-info/
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/core/
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/extensions/
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/lib/
|
|
Thomas Spura |
feba6ef |
%{python3_sitelib}/IPython/terminal/
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/utils/
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
# tests go into subpackage
|
|
Thomas Spura |
8890cd1 |
%exclude %{python3_sitelib}/IPython/*/tests/
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
feba6ef |
%files -n python3-ipython-sphinx
|
|
Thomas Spura |
feba6ef |
%{python3_sitelib}/IPython/sphinxext/
|
|
Thomas Spura |
feba6ef |
|
|
 |
60f9c3d |
%if %{with check}
|
|
Thomas Spura |
8890cd1 |
%files -n python3-ipython-tests
|
|
Thomas Spura |
8890cd1 |
%{python3_sitelib}/IPython/*/tests
|
|
 |
60f9c3d |
%endif
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
94e35d0 |
%if %{with doc}
|
|
 |
eb72a81 |
%files -n python3-ipython-doc
|
|
 |
eb72a81 |
%doc docs/build/html
|
|
Thomas Spura |
94e35d0 |
%endif
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
8890cd1 |
|
|
Shahms King |
44d2679 |
%changelog
|
|
 |
9074156 |
* Sat Feb 26 2022 Lumír Balhar <lbalhar@redhat.com> - 8.1.0-1
|
|
 |
9074156 |
- Update to 8.1.0
|
|
 |
9074156 |
Resolves: rhbz#2058882
|
|
 |
9074156 |
|
|
 |
f7c85fb |
* Mon Jan 24 2022 Lumír Balhar <lbalhar@redhat.com> - 8.0.1-1
|
|
 |
f7c85fb |
- Update to 8.0.1
|
|
 |
f7c85fb |
Resolves: rhbz#2042793
|
|
 |
f7c85fb |
|
|
 |
9b1e40c |
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 7.30.1-2
|
|
 |
9b1e40c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
 |
9b1e40c |
|
|
 |
34336da |
* Fri Dec 03 2021 Lumír Balhar <lbalhar@redhat.com> - 7.30.1-1
|
|
 |
34336da |
- Update to 7.30.1
|
|
 |
34336da |
Resolves: rhbz#2027069
|
|
 |
34336da |
|
|
 |
9852425 |
* Mon Nov 01 2021 Lumír Balhar <lbalhar@redhat.com> - 7.29.0-1
|
|
 |
9852425 |
- Update to 7.29.0
|
|
 |
9852425 |
Resolves: rhbz#2018636
|
|
 |
9852425 |
|
|
 |
9b675ad |
* Tue Oct 05 2021 Lumír Balhar <lbalhar@redhat.com> - 7.28.0-1
|
|
 |
9b675ad |
- Update to 7.28.0
|
|
 |
9b675ad |
Resolves: rhbz#2007824
|
|
 |
9b675ad |
|
|
 |
55c0e78 |
* Mon Aug 30 2021 Lumír Balhar <lbalhar@redhat.com> - 7.27.0-1
|
|
 |
55c0e78 |
- Update to 7.27.0
|
|
 |
55c0e78 |
Resolves: rhbz#1998766
|
|
 |
55c0e78 |
|
|
 |
8f9022e |
* Wed Aug 04 2021 Lumír Balhar <lbalhar@redhat.com> - 7.26.0-2
|
|
 |
8f9022e |
- Fix compatibility with Python 3.10rc1
|
|
 |
8f9022e |
|
|
 |
39ecacc |
* Mon Aug 02 2021 Lumír Balhar <lbalhar@redhat.com> - 7.26.0-1
|
|
 |
39ecacc |
- Update to 7.26.0
|
|
 |
39ecacc |
Resolves: rhbz#1988914
|
|
 |
39ecacc |
|
|
 |
8d36e06 |
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.25.0-2
|
|
 |
8d36e06 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
 |
8d36e06 |
|
|
 |
4f71332 |
* Mon Jun 28 2021 Lumír Balhar <lbalhar@redhat.com> - 7.25.0-1
|
|
 |
4f71332 |
- Update to 7.25.0
|
|
 |
4f71332 |
Resolves: rhbz#1976438
|
|
 |
4f71332 |
|
|
 |
d72aa60 |
* Fri Jun 11 2021 Lumír Balhar <lbalhar@redhat.com> - 7.24.1-1
|
|
 |
d72aa60 |
- Update to 7.24.1
|
|
 |
d72aa60 |
Resolves: rhbz#1967545
|
|
 |
d72aa60 |
|
|
 |
cc0373b |
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 7.24.0-3
|
|
 |
cc0373b |
- Rebuilt for Python 3.10
|
|
 |
cc0373b |
|
|
 |
16ad60a |
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 7.24.0-2
|
|
 |
16ad60a |
- Bootstrap for Python 3.10
|
|
 |
16ad60a |
|
|
 |
d3fed60 |
* Mon May 31 2021 Lumír Balhar <lbalhar@redhat.com> - 7.24.0-1
|
|
 |
d3fed60 |
- Update to 7.24.0
|
|
 |
d3fed60 |
Resolves: rhbz#1965746
|
|
 |
d3fed60 |
|
|
 |
028cff7 |
* Tue May 04 2021 Lumír Balhar <lbalhar@redhat.com> - 7.23.1-1
|
|
 |
028cff7 |
- Update to 7.23.1
|
|
 |
028cff7 |
Resolves: rhbz#1955903
|
|
 |
028cff7 |
|
|
 |
0f97376 |
* Mon Mar 29 2021 Karolina Surma <ksurma@redhat.com> - 7.22.0-1
|
|
 |
0f97376 |
- Update to 7.22.0
|
|
 |
0f97376 |
Resolves: rhbz#1943788
|
|
 |
0f97376 |
|
|
 |
4c2fd62 |
* Sun Feb 28 2021 Lumír Balhar <lbalhar@redhat.com> - 7.21.0-1
|
|
 |
4c2fd62 |
- Update to 7.21.0
|
|
 |
4c2fd62 |
Resolves: rhbz#1933409
|
|
 |
4c2fd62 |
|
|
 |
60d462e |
* Wed Feb 10 2021 Lumír Balhar <lbalhar@redhat.com> - 7.20.0-2
|
|
 |
60d462e |
- Fix tests with Python 3.10.0a5
|
|
 |
60d462e |
|
|
 |
b7e3bf3 |
* Tue Feb 02 2021 Lumír Balhar <lbalhar@redhat.com> - 7.20.0-1
|
|
 |
b7e3bf3 |
- Fix tests with Python 3.10.0a4
|
|
 |
b7e3bf3 |
Resolves: rhbz#1901141
|
|
 |
b7e3bf3 |
- Update to 7.20.0
|
|
 |
b7e3bf3 |
Resolves: rhbz#1923782
|
|
 |
b7e3bf3 |
|
|
 |
8ec6955 |
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.19.0-2
|
|
 |
8ec6955 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
 |
8ec6955 |
|
|
 |
c92b8a8 |
* Fri Nov 13 2020 Lumír Balhar <lbalhar@redhat.com> - 7.19.0-1
|
|
 |
c92b8a8 |
- Update to 7.19.0 (#1893413)
|
|
 |
c92b8a8 |
|
|
 |
a4f253d |
* Tue Sep 08 2020 Lumír Balhar <lbalhar@redhat.com> - 7.18.1-1
|
|
 |
a4f253d |
- Update to 7.18.1 (#1873693)
|
|
 |
a4f253d |
|
|
 |
fc7f4c4 |
* Mon Aug 31 2020 Lumír Balhar <lbalhar@redhat.com> - 7.18.0-1
|
|
 |
fc7f4c4 |
- Update to 7.18.0 (#1873693)
|
|
 |
fc7f4c4 |
|
|
 |
a67e4ee |
* Tue Aug 04 2020 Lumír Balhar <lbalhar@redhat.com> - 7.17.0-1
|
|
 |
a67e4ee |
- Update to 7.17.0 (#1862672)
|
|
 |
a67e4ee |
|
|
 |
00ac759 |
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.16.1-3
|
|
 |
00ac759 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
 |
00ac759 |
|
|
 |
c3a41eb |
* Fri Jul 10 2020 Miro Hrončok <mhroncok@redhat.com> - 7.16.1-2
|
|
 |
c3a41eb |
- Add ipython[notebook] subpackage
|
|
 |
c3a41eb |
|
|
 |
795945b |
* Tue Jul 07 2020 Lumír Balhar <lbalhar@redhat.com> - 7.16.1-1
|
|
 |
795945b |
- Update to 7.16.1 (#1851577)
|
|
 |
795945b |
|
|
 |
7f044bb |
* Wed Jun 03 2020 Miro Hrončok <mhroncok@redhat.com> - 7.15.0-2
|
|
 |
7f044bb |
- Switch to runtime requires generated from upstream metadata
|
|
 |
7f044bb |
- Drop unused (Build)Requires
|
|
 |
7f044bb |
|
|
 |
3fe1c27 |
* Mon Jun 01 2020 Lumír Balhar <lbalhar@redhat.com> - 7.15.0-1
|
|
 |
3fe1c27 |
- Update to 7.15.0 (#1841983)
|
|
 |
3fe1c27 |
|
|
 |
acf9b55 |
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 7.14.0-6
|
|
 |
acf9b55 |
- Rebuilt for Python 3.9
|
|
 |
acf9b55 |
|
|
 |
a27d11b |
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 7.14.0-5
|
|
 |
a27d11b |
- Bootstrap for Python 3.9
|
|
 |
a27d11b |
|
|
 |
f09ccf6 |
* Thu May 21 2020 Lumír Balhar <lbalhar@redhat.com> - 7.14.0-4
|
|
 |
f09ccf6 |
- Explicit tex dependencies for latextools (#1838474)
|
|
 |
f09ccf6 |
|
|
 |
2e06550 |
* Wed May 20 2020 Lumír Balhar <lbalhar@redhat.com> - 7.14.0-3
|
|
 |
2e06550 |
- Remove tests not compatible with Python 3.9.0b1 (#1837372)
|
|
 |
2e06550 |
|
|
 |
0c393bd |
* Tue May 05 2020 Lumír Balhar <lbalhar@redhat.com> - 7.14.0-2
|
|
 |
0c393bd |
- Remove tests not compatible with Python 3.9.0a6 (#1831182)
|
|
 |
0c393bd |
|
|
 |
d7371c5 |
* Mon May 04 2020 Lumír Balhar <lbalhar@redhat.com> - 7.14.0-1
|
|
 |
d7371c5 |
- Update to 7.14.0 (#1830483)
|
|
 |
d7371c5 |
|
|
 |
404298f |
* Tue Apr 14 2020 Lumír Balhar <lbalhar@redhat.com> - 7.13.0-2
|
|
 |
404298f |
- Fix compatibility with Sphinx 3.0.0
|
|
 |
404298f |
|
|
 |
0e70aba |
* Wed Mar 04 2020 Lumír Balhar <lbalhar@redhat.com> - 7.13.0-1
|
|
 |
0e70aba |
- Update to 7.13.0 (#1808624)
|
|
 |
0e70aba |
|
|
 |
bb1d0b1 |
* Mon Feb 10 2020 Lumír Balhar <lbalhar@redhat.com> - 7.12.0-1
|
|
 |
bb1d0b1 |
- Update to 7.12.0 (#1797183)
|
|
 |
bb1d0b1 |
|
|
 |
6fb3464 |
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.11.1-2
|
|
 |
6fb3464 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
 |
6fb3464 |
|
|
 |
e0a11b1 |
* Mon Jan 06 2020 Lumír Balhar <lbalhar@redhat.com> - 7.11.1-1
|
|
 |
e0a11b1 |
- Update to 7.11.1 (#1786893)
|
|
 |
e0a11b1 |
|
|
 |
4b8f3d3 |
* Mon Dec 16 2019 Lumír Balhar <lbalhar@redhat.com> - 7.10.2-1
|
|
 |
4b8f3d3 |
- Update to 7.10.2 (#1777612)
|
|
 |
4b8f3d3 |
|
|
 |
f182ed9 |
* Tue Nov 19 2019 Lumír Balhar <lbalhar@redhat.com> - 7.9.0-1
|
|
 |
f182ed9 |
- Update to 7.9.0 (#1765760)
|
|
 |
f182ed9 |
|
|
 |
88d9a3a |
* Mon Sep 02 2019 Lumír Balhar <lbalhar@redhat.com> - 7.8.0-1
|
|
 |
88d9a3a |
- Update to 7.8.0 (#1742354)
|
|
 |
88d9a3a |
|
|
 |
48d9c28 |
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 7.6.1-4
|
|
 |
48d9c28 |
- Rebuilt for Python 3.8
|
|
 |
48d9c28 |
|
|
 |
7af7cfd |
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 7.6.1-3
|
|
 |
7af7cfd |
- Bootstrap for Python 3.8
|
|
 |
7af7cfd |
|
|
 |
794454d |
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.6.1-2
|
|
 |
794454d |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
 |
794454d |
|
|
 |
1cc48cf |
* Wed Jul 03 2019 Miro Hrončok <mhroncok@redhat.com> - 7.6.1-1
|
|
 |
1cc48cf |
- Update to 7.6.1 (#1725333)
|
|
 |
1cc48cf |
|
|
 |
25810e0 |
* Tue May 21 2019 Miro Hrončok <mhroncok@redhat.com> - 7.5.0-1
|
|
 |
25810e0 |
- Update to 7.5.0 (#1678562)
|
|
 |
25810e0 |
|
|
 |
bff004b |
* Tue Apr 09 2019 Miro Hrončok <mhroncok@redhat.com> - 7.4.0-1
|
|
 |
bff004b |
- Update to 7.4.0 (#1678562)
|
|
 |
bff004b |
|
|
 |
08365d3 |
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.2.0-2
|
|
 |
08365d3 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
 |
08365d3 |
|
|
David Cantrell |
c0cb09f |
* Wed Jan 02 2019 David Cantrell <dcantrell@redhat.com> - 7.2.0-1
|
|
David Cantrell |
c0cb09f |
- Upgrade to 7.2.0 (#1662990)
|
|
David Cantrell |
c0cb09f |
|
|
 |
74bce4d |
* Wed Oct 03 2018 Miro Hrončok <mhroncok@redhat.com> - 7.0.1-1
|
|
 |
74bce4d |
- Update to 7.0.1 (#1610063)
|
|
 |
74bce4d |
|
|
 |
0bd03f4 |
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.4.0-4
|
|
 |
0bd03f4 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
 |
0bd03f4 |
|
|
 |
1bbe771 |
* Wed Jun 20 2018 Miro Hrončok <mhroncok@redhat.com> - 6.4.0-3
|
|
 |
1bbe771 |
- Rebuilt for Python 3.7
|
|
 |
1bbe771 |
|
|
 |
c92fbcb |
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 6.4.0-2
|
|
 |
42dcf61 |
- Bootstrap for Python 3.7
|
|
 |
c92fbcb |
|
|
 |
f00ad20 |
* Fri May 11 2018 Miro Hrončok <mhroncok@redhat.com> - 6.4.0-1
|
|
 |
f00ad20 |
- Update to 6.4.0 (#1577182)
|
|
 |
7821903 |
- Stop running the tests in xvfb (not needed since 5.x)
|
|
 |
f00ad20 |
|
|
 |
33e0d06 |
* Tue Apr 10 2018 Miro Hrončok <mhroncok@redhat.com> - 6.3.1-1
|
|
 |
33e0d06 |
- Update to 6.3.1 (#1563215)
|
|
 |
33e0d06 |
|
|
 |
b430bdd |
* Wed Apr 04 2018 Miro Hrončok <mhroncok@redhat.com> - 6.3.0-1
|
|
 |
b430bdd |
- Update to 6.3.0 (#1563215)
|
|
 |
b430bdd |
- Require numpy at least from the tests package (#1440518)
|
|
 |
b430bdd |
- Sort dependencies, remove unused
|
|
 |
b430bdd |
|
|
 |
67f3075 |
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 6.2.1-2
|
|
 |
67f3075 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
 |
67f3075 |
|
|
 |
01bebea |
* Sun Oct 01 2017 Miro Hrončok <mhroncok@redhat.com> - 6.2.1-1
|
|
 |
01bebea |
- Update to 6.2.1 (#1497372)
|
|
 |
01bebea |
|
|
 |
db45464 |
* Sat Sep 16 2017 Miro Hrončok <mhroncok@redhat.com> - 6.2.0-1
|
|
 |
db45464 |
- Update to 6.2.0 (#1492256)
|
|
 |
db45464 |
|
|
 |
a9db940 |
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.0-2
|
|
 |
a9db940 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
 |
a9db940 |
|
|
 |
da20e88 |
* Thu Jun 01 2017 Miro Hrončok <mhroncok@redhat.com> - 6.1.0-1
|
|
 |
cc7cf5a |
- Update to 6.1.0 (#1457581)
|
|
 |
da20e88 |
|
|
 |
e91de27 |
* Fri Apr 21 2017 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-1
|
|
 |
e91de27 |
- Update to 6.0.0 final
|
|
 |
e91de27 |
|
|
 |
d6ad233 |
* Tue Apr 11 2017 Miro Hrončok <mhroncok@redhat.com> - 6.0.0-0.1.rc1
|
|
 |
d6ad233 |
- Update to 6.0.0rc1
|
|
 |
d6ad233 |
- Drop Python 2 (unsupported)
|
|
 |
d6ad233 |
|
|
 |
1c190af |
* Fri Mar 17 2017 Miro Hrončok <mhroncok@redhat.com> - 5.3.0-4
|
|
 |
1c190af |
- Provide ipython2/3
|
|
 |
1c190af |
|
|
 |
6cd3346 |
* Fri Mar 17 2017 Miro Hrončok <mhroncok@redhat.com> - 5.3.0-3
|
|
 |
6cd3346 |
- Remove bogus shebangs
|
|
 |
6cd3346 |
|
|
 |
06f6306 |
* Wed Mar 15 2017 Miro Hrončok <mhroncok@redhat.com> - 5.3.0-2
|
|
 |
06f6306 |
- Also require traitlets
|
|
 |
06f6306 |
|
|
 |
eb72a81 |
* Wed Mar 08 2017 Tomas Orsava <torsava@redhat.com> - 5.3.0-1
|
|
 |
eb72a81 |
- Updated to 5.3.0
|
|
 |
eb72a81 |
- Removed the gui and notebook subpackages as they are now distributed
|
|
 |
eb72a81 |
separately (packages python-qtconsole and python-notebook respectively)
|
|
 |
eb72a81 |
- Binaries ipcluster, ipcontroller and ipengine no longer exist
|
|
 |
eb72a81 |
- Removed all patches (0-2)
|
|
 |
eb72a81 |
- Modified check section to fail the build upon test failures
|
|
 |
eb72a81 |
- Fixed building of documentation
|
|
 |
eb72a81 |
- Removed the pythonX-ipython-console subpackages, the functionality is now
|
|
 |
eb72a81 |
provided by the pythonX-ipython packages themselves
|
|
 |
eb72a81 |
|
|
 |
40c3699 |
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-12
|
|
 |
40c3699 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
 |
40c3699 |
|
|
Thomas Spura |
4ff0c9d |
* Mon Jan 02 2017 Thomas Spura <tomspur@fedoraproject.org> - 3.2.1-11
|
|
Thomas Spura |
4ff0c9d |
- rename python-* packages to python2-* (#1409249)
|
|
Thomas Spura |
690ed8e |
- remove group tag
|
|
Thomas Spura |
4ff0c9d |
|
|
 |
8c4d26f |
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.2.1-10
|
|
 |
8c4d26f |
- Rebuild for Python 3.6
|
|
 |
8c4d26f |
|
|
Dominik 'Rathann' Mierzejewski |
af18e71 |
* Mon Sep 26 2016 Dominik Mierzejewski <rpm@greysector.net> - 3.2.1-9
|
|
Dominik 'Rathann' Mierzejewski |
af18e71 |
- rebuilt for matplotlib-2.0.0
|
|
Dominik 'Rathann' Mierzejewski |
af18e71 |
|
|
 |
a56f981 |
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-8
|
|
 |
a56f981 |
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
 |
a56f981 |
|
|
 |
37a3530 |
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-7
|
|
 |
37a3530 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
 |
37a3530 |
|
|
 |
3e085a6 |
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-6
|
|
 |
3e085a6 |
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
 |
3e085a6 |
|
|
Orion Poplawski |
78bb7eb |
* Fri Oct 9 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-5
|
|
Orion Poplawski |
78bb7eb |
- Require python-pexpect in Fedora
|
|
Orion Poplawski |
78bb7eb |
|
|
Orion Poplawski |
0259e11 |
* Fri Sep 25 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-4
|
|
Orion Poplawski |
0259e11 |
- Own IPython/html directory
|
|
Orion Poplawski |
0259e11 |
|
|
Orion Poplawski |
4283f62 |
* Thu Sep 17 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-3
|
|
Orion Poplawski |
7f9f064 |
- Add upstream patch to fix file execution vulnerability (bug #1264068)
|
|
Orion Poplawski |
7f9f064 |
|
|
Orion Poplawski |
d75e4d6 |
* Wed Sep 2 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-2
|
|
Orion Poplawski |
d75e4d6 |
- Add upstream patch to fix XSS vulnerability (bug #1259405)
|
|
Orion Poplawski |
d75e4d6 |
|
|
Orion Poplawski |
ac6accd |
* Mon Jul 13 2015 Orion Poplawski <orion@cora.nwra.com> - 3.2.1-1
|
|
Orion Poplawski |
ac6accd |
- Update to 3.2.1
|
|
Orion Poplawski |
ac6accd |
|
|
 |
5ceada0 |
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-4
|
|
 |
5ceada0 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
 |
5ceada0 |
|
|
Orion Poplawski |
87043d8 |
* Fri May 8 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-3
|
|
Orion Poplawski |
87043d8 |
- Use python2 macros
|
|
Orion Poplawski |
87043d8 |
- Fix python3 shebang fix
|
|
Orion Poplawski |
87043d8 |
|
|
Orion Poplawski |
b773f86 |
* Thu May 7 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-2
|
|
Orion Poplawski |
b773f86 |
- Do not ship notebook on EL, missing python-tornado >= 4.0
|
|
Orion Poplawski |
b773f86 |
- Move IPython/html/static/custom into -console.
|
|
Orion Poplawski |
b773f86 |
|
|
Orion Poplawski |
f404de9 |
* Sat Apr 25 2015 Orion Poplawski <orion@cora.nwra.com> - 3.1.0-1
|
|
Orion Poplawski |
f404de9 |
- Update to 3.1.0
|
|
Orion Poplawski |
f404de9 |
- Add BR/R on mistune
|
|
Orion Poplawski |
f404de9 |
- Drop BR/R on jsonpointer
|
|
Orion Poplawski |
f404de9 |
- Drop fabric
|
|
Orion Poplawski |
f404de9 |
|
|
Orion Poplawski |
df90d60 |
* Thu Feb 26 2015 Orion Poplawski <orion@cora.nwra.com> - 2.4.1-1
|
|
Orion Poplawski |
df90d60 |
- update to 2.4.1
|
|
Orion Poplawski |
df90d60 |
|
|
Orion Poplawski |
81515fc |
* Wed Feb 25 2015 Orion Poplawski <orion@cora.nwra.com> - 2.4.0-1
|
|
Orion Poplawski |
81515fc |
- update to 2.4.0
|
|
Orion Poplawski |
81515fc |
|
|
Orion Poplawski |
ba9e12b |
* Fri Nov 14 2014 Orion Poplawski <orion@cora.nwra.com> - 2.3.0-1
|
|
Orion Poplawski |
e47f12b |
- update to 2.3.0
|
|
Orion Poplawski |
e47f12b |
|
|
Thomas Spura |
17fe8c1 |
* Thu Aug 7 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.2.0-1
|
|
Thomas Spura |
17fe8c1 |
- update to 2.2.0
|
|
Thomas Spura |
17fe8c1 |
|
|
Thomas Spura |
19eb4e6 |
* Sun Jul 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-7
|
|
Thomas Spura |
19eb4e6 |
- Replace python3 shebang with python2 one (#1123618)
|
|
Thomas Spura |
19eb4e6 |
|
|
Thomas Spura |
c43dcf3 |
* Sun Jul 6 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-6
|
|
Thomas Spura |
c43dcf3 |
- port ipython to fontawesome-4 and regenerate css in build (#1006575)
|
|
Thomas Spura |
c43dcf3 |
|
|
Thomas Spura |
e7691bb |
* Mon Jun 23 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-5
|
|
Thomas Spura |
e7691bb |
- use mathjax from _jsdir instead of cdn
|
|
Thomas Spura |
c803d68 |
- enable python3 tests
|
|
Thomas Spura |
e7691bb |
|
|
Thomas Spura |
6b14b3a |
* Wed Jun 18 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-4
|
|
Thomas Spura |
6b14b3a |
- BR/R same fonts for python{,3}-ipython-notebook (#1006575)
|
|
Thomas Spura |
6b14b3a |
- require tornado >= 3.1.0 (#1006575)
|
|
Thomas Spura |
6b14b3a |
|
|
 |
b56d08c |
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-3
|
|
 |
b56d08c |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
 |
b56d08c |
|
|
Thomas Spura |
7a9c982 |
* Sun Jun 1 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-2
|
|
Thomas Spura |
7a9c982 |
- package part of notebook in main package (#1103423)
|
|
Thomas Spura |
f551050 |
- add BR python-sphinx
|
|
Thomas Spura |
7a9c982 |
|
|
Thomas Spura |
9a7bb2a |
* Fri May 30 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.1.0-1
|
|
Thomas Spura |
f299ce0 |
- update to 2.1.0
|
|
Thomas Spura |
2c1a7c1 |
- Unbundle js-marked
|
|
Thomas Spura |
9d0333f |
- Add provides for bundled exception fpc#416
|
|
Thomas Spura |
3f2ece0 |
- Add BR Cython
|
|
Thomas Spura |
8277719 |
- disable python3 tests for now (possible blocking in koji)
|
|
Thomas Spura |
c46596f |
- Add BR python-pexpect
|
|
Thomas Spura |
f299ce0 |
|
|
Thomas Spura |
9a7bb2a |
* Fri May 30 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-2
|
|
Thomas Spura |
8cd467d |
- add BR/R python-path
|
|
Thomas Spura |
20a0a53 |
- fix python -> python3 sed replacement
|
|
Thomas Spura |
abcab17 |
- fix running testsuite
|
|
Thomas Spura |
adb6e40 |
- fix %%files
|
|
Thomas Spura |
d9f7353 |
- Unbundle js-highlight
|
|
Thomas Spura |
8cd467d |
|
|
Thomas Spura |
9a7bb2a |
* Fri May 30 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-1
|
|
Thomas Spura |
07ef55a |
- update to 2.0.0
|
|
Thomas Spura |
07ef55a |
- bundled argparse has been dropped
|
|
Thomas Spura |
db692bb |
- unbundle fontawesome-fonts{,-web}
|
|
Thomas Spura |
8aaaaf8 |
- unbundle nodejs-requirejs
|
|
Thomas Spura |
5e5d7dc |
- unbundle nodejs-underscore
|
|
Thomas Spura |
5e5d7dc |
- unbundle nodejs-highlight-js
|
|
Thomas Spura |
07ef55a |
|
|
Thomas Spura |
9a7bb2a |
* Fri May 30 2014 Thomas Spura <tomspur@fedoraproject.org> - 1.1.0-1
|
|
Thomas Spura |
feba6ef |
- update to 1.1.0
|
|
Thomas Spura |
feba6ef |
- drop both patches (upstream)
|
|
Thomas Spura |
feba6ef |
- add python-ipython-sphinx packages
|
|
Thomas Spura |
0647686 |
- remove %%defattr
|
|
Thomas Spura |
94e35d0 |
- rename run_testsuite to check
|
|
Thomas Spura |
94e35d0 |
- building docs (currently fails with an ascii error)
|
|
Thomas Spura |
6b7f486 |
- unbundle jsonschema
|
|
Thomas Spura |
baf70d9 |
- unbundle decorator
|
|
Thomas Spura |
feba6ef |
|
|
 |
6f90d6a |
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 0.13.2-4
|
|
 |
6f90d6a |
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
 |
6f90d6a |
|
|
Thomas Spura |
75f87cf |
* Mon Oct 7 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.13.2-3
|
|
Thomas Spura |
75f87cf |
- install into unversioned docdir (#993848)
|
|
Thomas Spura |
eda87c9 |
- R on setuptools for starting with pkg_resources (#994673)
|
|
Thomas Spura |
75f87cf |
|
|
 |
c9805f6 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.2-2
|
|
 |
c9805f6 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
 |
c9805f6 |
|
|
Thomas Spura |
1125183 |
* Wed Apr 10 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.13.2-2
|
|
Thomas Spura |
1125183 |
- Improve package descriptions (#950530)
|
|
Thomas Spura |
1125183 |
|
|
Thomas Spura |
375c18d |
* Sat Apr 6 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.13.2-1
|
|
Thomas Spura |
375c18d |
- update to 0.13.2 fixes #927169, #947633
|
|
Thomas Spura |
375c18d |
- run tests in xvfb
|
|
Thomas Spura |
375c18d |
- reword description of ipython-tests a bit
|
|
Thomas Spura |
375c18d |
|
|
Thomas Spura |
4e20f2d |
* Thu Feb 21 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.13.1-4
|
|
Thomas Spura |
4e20f2d |
- More changes to build for Python 3 (mostly by Andrew McNabb, #784947)
|
|
Thomas Spura |
4d3644e |
- Update package structure of python3-ipython subpackage to match python2-ipython one's
|
|
Thomas Spura |
84be9a1 |
- enable python3 build of ipython
|
|
Thomas Spura |
e54f79a |
- exclude pylab tests for now, as it is broken on python3
|
|
Thomas Spura |
4e20f2d |
|
|
Thomas Spura |
ef9e54c |
* Thu Feb 21 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.13.1-3
|
|
Thomas Spura |
4d2c977 |
- obsolete old python packages (José Matos, #882724)
|
|
Thomas Spura |
ef9e54c |
- notebook and gui subpackage require matplotlib not the console anymore (#872176)
|
|
Thomas Spura |
ef9e54c |
|
|
 |
0ba34b7 |
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.1-2
|
|
 |
0ba34b7 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
 |
0ba34b7 |
|
|
Thomas Spura |
9df054e |
* Wed Oct 24 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.13.1-1
|
|
Thomas Spura |
d3f3d70 |
- update to 0.13.1 (#838031)
|
|
Thomas Spura |
9df054e |
- run tests with en_US.UTF-8
|
|
Thomas Spura |
9df054e |
|
|
Thomas Spura |
4fbfa39 |
* Thu Aug 30 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.13-5
|
|
Thomas Spura |
4fbfa39 |
- add empty python-ipython files section
|
|
Thomas Spura |
4fbfa39 |
- obsolete ipython
|
|
Thomas Spura |
4fbfa39 |
|
|
Thomas Spura |
016d8a3 |
* Wed Aug 8 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.13-4
|
|
Thomas Spura |
2017b11 |
- use versioned requires/provides on ipython
|
|
Thomas Spura |
016d8a3 |
|
|
Thomas Spura |
96cccfd |
* Sat Aug 4 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.13-3
|
|
Thomas Spura |
96cccfd |
- use python-foo for python2-foo and provide ipython-foo
|
|
Thomas Spura |
96cccfd |
|
|
 |
b2b0b91 |
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13-2
|
|
 |
b2b0b91 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
 |
b2b0b91 |
|
|
Thomas Spura |
b155315 |
* Sat Jun 30 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.13-1
|
|
Thomas Spura |
b155315 |
- update to new version
|
|
Thomas Spura |
b155315 |
- R on mglob/pyparsing is obsolete
|
|
Thomas Spura |
b155315 |
- remove patch, as it's upstream
|
|
Thomas Spura |
b155315 |
|
|
Thomas Spura |
8890cd1 |
* Fri Jan 27 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.12-3
|
|
Thomas Spura |
8890cd1 |
- skip no X tests
|
|
Thomas Spura |
8890cd1 |
- continue with python3 support
|
|
Thomas Spura |
8890cd1 |
|
|
Thomas Spura |
743c79f |
* Sun Jan 8 2012 Thomas Spura <tomspur@fedoraproject.org> - 0.12-2
|
|
Thomas Spura |
743c79f |
- add missing R tornado
|
|
Thomas Spura |
743c79f |
- add _bindir to PATH to more tests pass in koji
|
|
Thomas Spura |
743c79f |
|
|
Thomas Spura |
40fb0db |
* Mon Dec 19 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.12-1
|
|
Thomas Spura |
40fb0db |
- update to new version
|
|
Thomas Spura |
40fb0db |
- bcond_without run_testsuite
|
|
Thomas Spura |
40fb0db |
|
|
Thomas Spura |
1971215 |
* Sun Oct 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.11-3
|
|
Thomas Spura |
1971215 |
- add more missing R (matplotlib and pygments) (#748141)
|
|
Thomas Spura |
1971215 |
|
|
 |
c8e1324 |
* Tue Sep 20 2011 Michel Salim <salimma@fedoraproject.org> - 0.11-2
|
|
 |
c8e1324 |
- make -gui subpackage depend on PyQt4, not PyQt
|
|
 |
c8e1324 |
|
|
Thomas Spura |
aad6999 |
* Mon Jul 4 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.11-1
|
|
Thomas Spura |
aad6999 |
- update to 0.11
|
|
Thomas Spura |
aad6999 |
- patches included upstream
|
|
Thomas Spura |
aad6999 |
- ipython changed bundled pretty, so redistributes it in lib now
|
|
Thomas Spura |
aad6999 |
- run testsuite
|
|
Thomas Spura |
aad6999 |
- new upstream url
|
|
Thomas Spura |
aad6999 |
|
|
 |
3ad779e |
* Sat Apr 9 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.10.2-1
|
|
 |
3ad779e |
- update to new version
|
|
 |
3ad779e |
- patch3 is included upstream
|
|
 |
3ad779e |
- fixes #663823, #649281
|
|
 |
3ad779e |
|
|
 |
51a03eb |
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.1-4
|
|
 |
51a03eb |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
 |
51a03eb |
|
|
 |
a34b15b |
* Mon Nov 15 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10.1-3
|
|
 |
a34b15b |
- add fix for #646079 and use upstream fix for #628742
|
|
 |
a34b15b |
|
|
 |
3f640e9 |
* Mon Oct 18 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10.1-2
|
|
 |
3f640e9 |
- argparse is in python 2.7 and 3.2
|
|
 |
3f640e9 |
|
|
 |
a0d71d1 |
* Wed Oct 13 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10.1-1
|
|
 |
a0d71d1 |
- unbundle a bit differently
|
|
 |
a0d71d1 |
- update to new version
|
|
 |
a0d71d1 |
|
|
 |
1745a1c |
* Tue Aug 31 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10-8
|
|
 |
1745a1c |
- pycolor: wrong filename -> no crash (#628742)
|
|
 |
1745a1c |
|
|
 |
221ee1f |
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.10-7
|
|
 |
221ee1f |
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
 |
221ee1f |
|
|
 |
c055309 |
* Mon Jul 19 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10-6
|
|
 |
c055309 |
- add missing dependencies: pexpect and python-argparse
|
|
 |
c055309 |
|
|
 |
dc855cb |
* Tue Jun 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10-5
|
|
 |
dc855cb |
- two more unbundled libraries in fedora
|
|
 |
dc855cb |
|
|
 |
8c7d753 |
* Mon Jun 21 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.10-4
|
|
 |
8c7d753 |
- Update patch for import in argparse
|
|
 |
8c7d753 |
|
|
 |
dfd5875 |
* Fri Jun 11 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10-3
|
|
 |
dfd5875 |
- fix license tag (#603178)
|
|
 |
dfd5875 |
- add requires on wxpython to gui subpackage (#515570)
|
|
 |
dfd5875 |
- start unbundling the libraries - more to come (#603937)
|
|
 |
dfd5875 |
|
|
 |
efa169a |
* Tue Apr 13 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.10-2
|
|
 |
efa169a |
- move docs into a subpackage
|
|
 |
efa169a |
- subpackage wxPython
|
|
 |
efa169a |
- subpackage tests
|
|
 |
efa169a |
- use proper %%{python_site*} definitions
|
|
 |
efa169a |
- make %%{files} more explicit
|
|
 |
efa169a |
- add some missing R (fixes #529185, #515570)
|
|
 |
efa169a |
|
|
 |
efa169a |
* Tue Sep 22 2009 James Bowes <jbowes@redhat.com> - 0.10-1
|
|
 |
312bcbb |
- Update to 0.10
|
|
 |
312bcbb |
|
|
 |
d830257 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-4
|
|
 |
d830257 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
 |
d830257 |
|
|
 |
36a3286 |
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-3
|
|
 |
36a3286 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
 |
36a3286 |
|
|
 |
8cbe238 |
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.9.1-2
|
|
 |
8cbe238 |
- Rebuild for Python 2.6
|
|
 |
8cbe238 |
|
|
 |
efa169a |
* Tue Dec 02 2008 James Bowes <jbowes@redhat.com> - 0.9.1-1
|
|
 |
7a1ba7b |
- Update to 0.9.1, specfile changes courtesy Greg Swift
|
|
 |
7a1ba7b |
|
|
 |
ef528a9 |
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.8.4-2
|
|
 |
ef528a9 |
- Rebuild for Python 2.6
|
|
 |
ef528a9 |
|
|
 |
efa169a |
* Wed Jun 11 2008 James Bowes <jbowes@redhat.com> - 0.8.4-1
|
|
 |
b99b1e5 |
- Update to 0.8.4
|
|
 |
b99b1e5 |
|
|
 |
efa169a |
* Fri May 30 2008 James Bowes <jbowes@redhat.com> - 0.8.3-1
|
|
 |
d759a1d |
- Update to 0.8.3
|
|
 |
d759a1d |
|
|
 |
9e57f5c |
* Wed Dec 12 2007 James Bowes <jbowes@redhat.com> - 0.8.2-1
|
|
 |
9e57f5c |
- Update to 0.8.2
|
|
 |
9e57f5c |
|
|
 |
6320825 |
* Sun Aug 05 2007 James Bowes <jbowes@redhat.com> - 0.8.1-2
|
|
 |
6320825 |
- Remove explicit requires on python-abi.
|
|
 |
6320825 |
|
|
 |
8662ad2 |
* Sun Aug 05 2007 James Bowes <jbowes@redhat.com> - 0.8.1-1
|
|
 |
8662ad2 |
- Update to 0.8.1
|
|
 |
8662ad2 |
|
|
 |
074c540 |
* Thu Dec 14 2006 Jason L Tibbitts III <tibbs@math.uh.edu> - 0.7.2-4
|
|
 |
074c540 |
- Rebuild for new Python
|
|
 |
074c540 |
|
|
 |
efa169a |
* Sat Sep 16 2006 Shahms E. King <shahms@shahms.com> - 0.7.2-3
|
|
Shahms King |
f4388df |
- Rebuild for FC6
|
|
Shahms King |
f4388df |
|
|
 |
efa169a |
* Fri Aug 11 2006 Shahms E. King <shahms@shahms.com> - 0.7.2-2
|
|
Shahms King |
017c6ef |
- Include, don't ghost .pyo files per new guidelines
|
|
Shahms King |
017c6ef |
|
|
 |
efa169a |
* Mon Jun 12 2006 Shahms E. King <shahms@shahms.com> - 0.7.2-1
|
|
Shahms King |
836d59a |
- Update to new upstream version
|
|
Shahms King |
836d59a |
|
|
 |
efa169a |
* Mon Feb 13 2006 Shahms E. King <shahms@shahms.com> - 0.7.1.fix1-2
|
|
Shahms King |
873f337 |
- Rebuild for FC-5
|
|
Shahms King |
873f337 |
|
|
 |
efa169a |
* Mon Jan 30 2006 Shahms E. King <shahms@shahms.com> - 0.7.1.fix1-1
|
|
Shahms King |
8b7e39d |
- New upstream 0.7.1.fix1 which fixes KeyboardInterrupt handling
|
|
Shahms King |
8b7e39d |
|
|
 |
efa169a |
* Tue Jan 24 2006 Shahms E. King <shahms@shahms.com> - 0.7.1-1
|
|
Shahms King |
4d38d63 |
- Update to new upstream 0.7.1
|
|
Shahms King |
4d38d63 |
|
|
 |
efa169a |
* Thu Jan 12 2006 Shahms E. King <shahms@shahms.com> - 0.7-1
|
|
Shahms King |
4d39d06 |
- Update to new upstream 0.7.0
|
|
Shahms King |
4d39d06 |
|
|
 |
efa169a |
* Mon Jun 13 2005 Shahms E. King <shahms@shahms.com> - 0.6.15-1
|
|
Shahms King |
bb082c3 |
- Add dist tag
|
|
Shahms King |
bb082c3 |
- Update to new upstream (0.6.15)
|
|
Shahms King |
bb082c3 |
|
|
 |
efa169a |
* Wed Apr 20 2005 Shahms E. King <shahms@shahms.com> - 0.6.13-2
|
|
Shahms King |
5ca4202 |
- Fix devel release number
|
|
Shahms King |
5ca4202 |
|
|
 |
efa169a |
* Mon Apr 18 2005 Shahms E. King <shahms@shahms.com> - 0.6.13-1
|
|
Shahms King |
3745810 |
- Update to new upstream version
|
|
Shahms King |
3745810 |
|
|
 |
efa169a |
* Fri Apr 1 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.6.12-2
|
|
 |
e8144fb |
- Include IPython Extensions and UserConfig directories.
|
|
 |
e8144fb |
|
|
 |
efa169a |
* Fri Mar 25 2005 Shahms E. King <shahms@shahms.com> - 0.6.12-1
|
|
Shahms King |
48e4ad3 |
- Update to 0.6.12
|
|
Shahms King |
48e4ad3 |
- Removed unused python_sitearch define
|
|
Shahms King |
48e4ad3 |
|
|
 |
efa169a |
* Tue Mar 01 2005 Shahms E. King <shahms@shahms.com> - 0.6.11-2
|
|
 |
074c540 |
- Fix up %%doc file specifications
|
|
Shahms King |
44d2679 |
- Use offical .tar.gz, not upstream .src.rpm .tar.gz
|
|
Shahms King |
44d2679 |
|
|
 |
efa169a |
* Tue Mar 01 2005 Shahms E. King <shahms@shahms.com> - 0.6.11-1
|
|
Shahms King |
44d2679 |
- Initial release to meet Fedora packaging guidelines
|