Accepting request 885974 from home:bnavigator:branches:devel:languages:python:jupyter

- Release 1.6.1:
  * Fix race condition with async kernel management #472 (@jtpio)
  * Fix kernel lookup #475 (@davidbrochart)
  * Add Extension App Aliases to Server App #473 (@jtpio)
  * Correct 'Content-Type' headers #471 (@faucct)
- Release 1.6.0:
  * Add env variable support for port options #461 (@afshin)
  * Add support for JUPYTER_TOKEN_FILE #462 (@afshin)
  * Remove unnecessary future imports #464 (@afshin)
  * Add Changelog to Sphinx Docs #465 (@afshin)
  * Update description for kernel restarted in the API docs #463
    (@jtpio)
  * Delete the extra “or” that prevents easy cut-and-paste of URLs.
    #460 (@jasongrout)
  * Add descriptive log for port unavailable and port-retries=0
    #459 (@afshin)
  * Add ReadTheDocs config #468 (@jtpio)
  * Update MappingKM.restart_kernel to accept now kwarg #404
    (@vidartf)
- Release 1.5.1:
  * Ensure jupyter config dir exists #454 (@afshin)
  * Allow pre_save_hook to cancel save with HTTPError #456 (@minrk)
- Release 1.5.0:
  * Add Styling to the HTML Pages #452 (@afshin)
  * Implement password hashing with argon2-cffi #450 (@afshin)
  * Escape user input in handlers flagged during code scans #449
    (@kevin-bates)
  * Fix for the terminal shutdown issue #446 (@afshin)
  * Update the branch filter for the CI badge #445 (@jtpio)
  * Fix for UnboundLocalError in shutdown #444 (@afshin)
  * Update CI badge and fix broken link #443 (@blink1073)
  * Fix syntax typo #442 (@kiendang)
  * Port terminal culling from Notebook #438 (@kevin-bates)
  * More complex handling of open_browser from extension
    applications #433 (@afshin)
  * Correction in Changelog #429 (@Zsailer)
  * Rename translation function alias #428 (@sngyo)
- Note: Don't update to v1.6.2 before setuptools >= 0.49.4 is
  available, which is required by jupyter-packaging 0.9!

OBS-URL: https://build.opensuse.org/request/show/885974
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-jupyter-server?expand=0&rev=33
This commit is contained in:
Markéta Machová 2021-04-16 12:45:22 +00:00 committed by Git OBS Bridge
parent cdc58ec23a
commit cc53c94fba
4 changed files with 55 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3dc733394fc736ec3372e50c357152e7f44e8ac6704ee92d0c3cad959550feaa
size 271828

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b4aa8c67c8454df2c6609b61f7291574ca76f7bdcf2b3db11ab62d52b4b3db5
size 280497

View File

@ -1,3 +1,46 @@
-------------------------------------------------------------------
Fri Apr 16 09:33:21 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Release 1.6.1:
* Fix race condition with async kernel management #472 (@jtpio)
* Fix kernel lookup #475 (@davidbrochart)
* Add Extension App Aliases to Server App #473 (@jtpio)
* Correct 'Content-Type' headers #471 (@faucct)
- Release 1.6.0:
* Add env variable support for port options #461 (@afshin)
* Add support for JUPYTER_TOKEN_FILE #462 (@afshin)
* Remove unnecessary future imports #464 (@afshin)
* Add Changelog to Sphinx Docs #465 (@afshin)
* Update description for kernel restarted in the API docs #463
(@jtpio)
* Delete the extra “or” that prevents easy cut-and-paste of URLs.
#460 (@jasongrout)
* Add descriptive log for port unavailable and port-retries=0
#459 (@afshin)
* Add ReadTheDocs config #468 (@jtpio)
* Update MappingKM.restart_kernel to accept now kwarg #404
(@vidartf)
- Release 1.5.1:
* Ensure jupyter config dir exists #454 (@afshin)
* Allow pre_save_hook to cancel save with HTTPError #456 (@minrk)
- Release 1.5.0:
* Add Styling to the HTML Pages #452 (@afshin)
* Implement password hashing with argon2-cffi #450 (@afshin)
* Escape user input in handlers flagged during code scans #449
(@kevin-bates)
* Fix for the terminal shutdown issue #446 (@afshin)
* Update the branch filter for the CI badge #445 (@jtpio)
* Fix for UnboundLocalError in shutdown #444 (@afshin)
* Update CI badge and fix broken link #443 (@blink1073)
* Fix syntax typo #442 (@kiendang)
* Port terminal culling from Notebook #438 (@kevin-bates)
* More complex handling of open_browser from extension
applications #433 (@afshin)
* Correction in Changelog #429 (@Zsailer)
* Rename translation function alias #428 (@sngyo)
- Note: Don't update to v1.6.2 before setuptools >= 0.49.4 is
available, which is required by jupyter-packaging 0.9!
-------------------------------------------------------------------
Thu Feb 25 20:54:28 UTC 2021 - Matej Cepl <mcepl@suse.com>

View File

@ -19,9 +19,9 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-jupyter-server
Version: 1.4.1
Version: 1.6.1
Release: 0
Summary: The Jupyter Server
Summary: The backend to Jupyter web applications
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/jupyter/jupyter_server
@ -29,6 +29,7 @@ Source: https://github.com/jupyter/jupyter_server/archive/%{version}.tar
BuildRequires: %{python_module Jinja2}
BuildRequires: %{python_module Send2Trash}
BuildRequires: %{python_module anyio >= 2.0.2}
BuildRequires: %{python_module argon2-cffi}
BuildRequires: %{python_module ipython_genutils}
BuildRequires: %{python_module jupyter-client >= 6.1.1}
BuildRequires: %{python_module jupyter-core >= 4.4.0}
@ -48,6 +49,7 @@ BuildRequires: python-rpm-macros
Requires: python-Jinja2
Requires: python-Send2Trash
Requires: python-anyio
Requires: python-argon2-cffi
Requires: python-ipython_genutils
Requires: python-jupyter-client >= 6.1.1
Requires: python-jupyter-core >= 4.4.0
@ -104,7 +106,11 @@ done
}
export LANG=en_US.UTF-8
export PATH=$PWD/build/testbin:$PATH
%pytest
if [ -e ~/.local/share/jupyter ]; then
echo "WARNING: Not a clean test environment."
echo "You might need to delete ~/.local/share/jupyter in order to avoid test failures."
fi
%pytest jupyter_server
%post
%python_install_alternative jupyter-server