Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: jupyter-ipyparallel-doc | Distribution: SUSE Linux Enterprise 15 SP6 |
Version: 6.3.0~git.20191010T150914.ce996ae | Vendor: openSUSE |
Release: bp156.3.3 | Build date: Tue May 21 03:30:39 2024 |
Group: Documentation/Other | Build host: i03-ch1b |
Size: 9790999 | Source RPM: python-ipyparallel-6.3.0~git.20191010T150914.ce996ae-bp156.3.3.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/ipython/ipyparallel | |
Summary: Documentation for ipyparallel |
Documentation and help files for ipyparallel.
BSD-3-Clause
* Thu Apr 23 2020 Tomáš Chvátal <tchvatal@suse.com> - Drop py2 code from py3 only package * Thu Mar 12 2020 hpj@urpla.net - Switch to git scm service - Update to version 6.3.0~git.20191010T150914.ce996ae: * fix maybe_future * only yield Futures * pytest captures output * importing joblib can raise TypeError on py38 * unpin tornado * update dask api * update mocking for latest ipykernel * Use unittest.mock if available * Tue Nov 12 2019 Todd R <toddrme2178@gmail.com> - Drop python2 support due to python-notebook dropping python2 support * Mon Aug 26 2019 Todd R <toddrme2178@gmail.com> - Fix spurious test failure * Sun Aug 11 2019 Todd R <toddrme2178@gmail.com> - Switch from wheel to sdist. * Wed Jun 12 2019 Todd R <toddrme2178@gmail.com> - Update to 6.2.4 * Improve compatibility with ipykernel 5 * Fix %autopx with IPython 7 * Fix non-local ip warning when using current hostname * Thu Apr 25 2019 Todd R <toddrme2178@gmail.com> - Rename to to match python package naming guidelines. - Split jupyter components into own subpackage. * Sat Dec 22 2018 Todd R <toddrme2178@gmail.com> - Update to 6.2.3 * Fix compatibility for execute requests with ipykernel 5 * require ipykernel >= 4.4 * Thu Aug 02 2018 toddrme2178@gmail.com - Update to 6.2.2 * Fix compatibility with tornado 4, broken in 6.2.0 * Fix encoding of engine and controller logs in ipcluster --debug on Python 3 * Fix compatiblity with joblib 0.12 * Include LICENSE file in wheels * Thu Jun 07 2018 toddrme2178@gmail.com - Update to version 6.2.1 * Workaround a setuptools issue preventing installation from sdist on Windows - Update to version 6.2.0 * Drop support for Python 3.3. IPython parallel now requires Python 2.7 or >= 3.4. * Further fixes for compatibility with tornado 5 when run with asyncio (Python 3) * Fix for enabling clusters tab via nbextension * Multiple fixes for handling when engines stop unexpectedly * Installing IPython Parallel enables the Clusters tab extension by default, without any additional commands. - Switch to wheel-based install - Run tests in main package - Remove -doc subpackage and use upstream-build docs * Thu Feb 15 2018 toddrme2178@gmail.com - Update to 6.1.1 * Fix regression in 6.1.0 preventing BatchSpawners (PBS, etc.) from launching with ipcluster. - Update to 6.1.0 + Compatibility fixes with related packages: * Fix compatibility with pyzmq 17 and tornado 5. * Fix compatibility with IPython ≥ 6. * Improve compatibility with dask.distributed ≥ 1.18. + New features: * Add :attr:`namespace` to BatchSpawners for easier extensibility. * Support serializing partial functions. * Support hostnames for machine location, not just ip addresses. * Add ``--location`` argument to ipcluster for setting the controller location. It can be a hostname or ip. * Engine rank matches MPI rank if engines are started with ``--mpi``. * Avoid duplicate pickling of the same object in maps, etc. * Tue Feb 13 2018 toddrme2178@gmail.com - Update url * Wed Sep 20 2017 toddrme2178@gmail.com - Further improvements to notebook extension handling * Wed Sep 20 2017 toddrme2178@gmail.com - Fix notebook extension handling * Sun Aug 06 2017 toddrme2178@gmail.com - Fix script interpeter. * Thu Apr 27 2017 toddrme2178@gmail.com - Implement single-spec version. * Fri Apr 07 2017 toddrme2178@gmail.com - Clean up update-alternatives usage. * Thu Mar 30 2017 toddrme2178@gmail.com - Update to 6.0.2 * Upload fixed sdist for 6.0.1. - Update to 6.0.1 * Small encoding fix for Python 2. - Update to 6.0 * Due to a compatibility change and semver, this is a major release. However, it is not a big release. * The main compatibility change is that all timestamps are now timezone-aware UTC timestamps. * This means you may see comparison errors if you have code that uses datetime objects without timezone info (so-called naïve datetime objects). * Rename :meth:`Client.become_distributed` to :meth:`Client.become_dask`. :meth:`become_distributed` remains as an alias. * import joblib from a public API instead of a private one when using IPython Parallel as a joblib backend. * Compatibility fix in extensions for security changes in notebook 4.3 - Update to 5.2 * Fix compatibility with changes in ipykernel 4.3, 4.4 * Improve inspection of ``@remote`` decorated functions * :meth:`Client.wait` accepts any Future. * Add ``--user`` flag to :command:`ipcluster nbextension` * Default to one core per worker in :meth:`Client.become_distributed`. Override by specifying `ncores` keyword-argument. * Subprocess logs are no longer sent to files by default in :command:`ipcluster`. - Update to 5.1 * IPython Parallel 5.1 adds integration with other parallel computing tools, such as `dask.distributed <https://distributed.readthedocs.io>`_ and `joblib <https://pythonhosted.org/joblib>`__. * IPython parallel now supports the notebook-4.2 API for enabling server extensions, to provide the IPython clusters tab jupyter serverextension enable --py ipyparallel jupyter nbextension install --py ipyparallel jupyter nbextension enable --py ipyparallel though you can still use the more convenient single-call:: ipcluster nbextension enable which does all three steps above. * `Slurm <https://computing.llnl.gov/tutorials/linux_clusters>`_ support is added to ipcluster. - Update to 5.0.1 * Fix imports in :meth:`use_cloudpickle`, :meth:`use_dill`. * Various typos and documentation updates to catch up with 5.0. * Wed Feb 17 2016 toddrme2178@gmail.com - specfile: * update copyright year - update to version 5.0.0: * The highlight of ipyparallel 5.0 is that the Client has been reorganized a bit to use Futures. AsyncResults are now a Future subclass, so they can be `yield`ed in coroutines, etc. Views have also received an Executor interface. This rewrite better connects results to their handles, so the Client.results cache should no longer grow unbounded. + The Executor API :class:`ipyparallel.ViewExecutor` + Creating an Executor from a Client: :meth:`ipyparallel.Client.executor` + Each View has an :attr:`executor` attribute * Part of the Future refactor is that Client IO is now handled in a background thread, which means that :meth:`Client.spin_thread` is obsolete and deprecated. * Other changes: + Add :command:`ipcluster nbextension enable|disable` to toggle the clusters tab in Jupyter notebook * Less interesting development changes for users: Some IPython-parallel extensions to the IPython kernel have been moved to the ipyparallel package: + :mod:`ipykernel.datapub` is now :mod:`ipyparallel.datapub` + ipykernel Python serialization is now in :mod:`ipyparallel.serialize` + apply_request message handling is implememented in a Kernel subclass, rather than the base ipykernel Kernel. - update to version 4.1.0: * Add :meth:`.Client.wait_interactive` * Improvements for specifying engines with SSH launcher. - Split documentation into own subpackage to speed up builds. * Mon Oct 05 2015 toddrme2178@gmail.com - Build documentation * Fri Aug 28 2015 toddrme2178@gmail.com - Fix conflict. * Wed Aug 26 2015 toddrme2178@gmail.com - Initial version
/usr/share/doc/packages/jupyter-ipyparallel /usr/share/doc/packages/jupyter-ipyparallel/html /usr/share/doc/packages/jupyter-ipyparallel/html/_images /usr/share/doc/packages/jupyter-ipyparallel/html/_images/allconnections.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/dagdeps.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/hbfade.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/iopubfade.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/notiffade.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/queryfade.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/queuefade.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/simpledag.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/single_digits.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/two_digit_counts.png /usr/share/doc/packages/jupyter-ipyparallel/html/_images/wideView.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static /usr/share/doc/packages/jupyter-ipyparallel/html/_static/ajax-loader.gif /usr/share/doc/packages/jupyter-ipyparallel/html/_static/basic.css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/comment-bright.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/comment-close.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/comment.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/css/badge_only.css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/css/theme.css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/doctools.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/documentation_options.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/down-pressed.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/down.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/file.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bold.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bold.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bold.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bold.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bolditalic.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bolditalic.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bolditalic.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-bolditalic.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-italic.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-italic.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-italic.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-italic.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-regular.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-regular.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-regular.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/Lato/lato-regular.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/fontawesome-webfont.eot /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/fontawesome-webfont.svg /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/fontawesome-webfont.ttf /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/fontawesome-webfont.woff /usr/share/doc/packages/jupyter-ipyparallel/html/_static/fonts/fontawesome-webfont.woff2 /usr/share/doc/packages/jupyter-ipyparallel/html/_static/graphviz.css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/jquery-3.2.1.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/jquery.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/js/modernizr.min.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/js/theme.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/minus.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/plus.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/pygments.css /usr/share/doc/packages/jupyter-ipyparallel/html/_static/searchtools.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/underscore-1.3.1.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/underscore.js /usr/share/doc/packages/jupyter-ipyparallel/html/_static/up-pressed.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/up.png /usr/share/doc/packages/jupyter-ipyparallel/html/_static/websupport.js /usr/share/doc/packages/jupyter-ipyparallel/html/index.html /usr/share/doc/packages/jupyter-ipyparallel/html/objects.inv /usr/share/doc/packages/jupyter-ipyparallel/ipyparallel.pdf /usr/share/licenses/jupyter-ipyparallel-doc /usr/share/licenses/jupyter-ipyparallel-doc/COPYING.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 9 14:56:22 2025