diff -Nru glueviz-1.0.1+dfsg/debian/changelog glueviz-1.0.1+dfsg/debian/changelog --- glueviz-1.0.1+dfsg/debian/changelog 2021-01-19 01:22:18.000000000 +0000 +++ glueviz-1.0.1+dfsg/debian/changelog 2021-12-09 04:01:09.000000000 +0000 @@ -1,3 +1,13 @@ +glueviz (1.0.1+dfsg-2) unstable; urgency=medium + + * Drop obsolete dependency on jupyter_client (Closes: #999703) + * Bump Standards-Version to 4.6.0. No changes required. + * debian/copyright: Update copyright holder email and year for + debian/*. + * debian/glue: Bump dependency on glue core for load entrypoint. + + -- Josue Ortega Wed, 08 Dec 2021 22:01:09 -0600 + glueviz (1.0.1+dfsg-1) unstable; urgency=medium * New upstream release (1.0.1) diff -Nru glueviz-1.0.1+dfsg/debian/control glueviz-1.0.1+dfsg/debian/control --- glueviz-1.0.1+dfsg/debian/control 2021-01-19 01:22:18.000000000 +0000 +++ glueviz-1.0.1+dfsg/debian/control 2021-12-09 04:01:09.000000000 +0000 @@ -18,7 +18,7 @@ python3-ipykernel, python3-bottleneck, python3-setuptools-scm -Standards-Version: 4.5.1 +Standards-Version: 4.6.0 Homepage: http://www.glueviz.org/ Vcs-Git: https://salsa.debian.org/debian-astro-team/glue.git Vcs-Browser: https://salsa.debian.org/debian-astro-team/glue @@ -68,8 +68,7 @@ python3-qtpy, ipython3 (>= 5.1.0), python3-qtconsole (>= 4.3.0), - python3-mpl-scatter-density (>= 0.7), - jupyter-client (<< 7) + python3-mpl-scatter-density (>= 0.7) Recommends: python3-spectral-cube, python3-astrodendro Conflicts: glue-sprite Description: Linked data visualization diff -Nru glueviz-1.0.1+dfsg/debian/copyright glueviz-1.0.1+dfsg/debian/copyright --- glueviz-1.0.1+dfsg/debian/copyright 2021-01-19 01:22:18.000000000 +0000 +++ glueviz-1.0.1+dfsg/debian/copyright 2021-12-09 04:01:09.000000000 +0000 @@ -27,7 +27,7 @@ License: CC-BY-3.0 Files: debian/* -Copyright: 2016 Josue Ortega +Copyright: 2021 Josue Ortega License: BSD-3-Clause Files: debian/repack diff -Nru glueviz-1.0.1+dfsg/debian/glue glueviz-1.0.1+dfsg/debian/glue --- glueviz-1.0.1+dfsg/debian/glue 2021-01-19 01:22:18.000000000 +0000 +++ glueviz-1.0.1+dfsg/debian/glue 2021-12-09 04:01:09.000000000 +0000 @@ -1,5 +1,5 @@ #!/usr/bin/python3 -__requires__ = 'glue_core==1.0.0' +__requires__ = 'glue_core==1.0.1' import sys import os @@ -8,4 +8,4 @@ os.environ['QT_API'] = 'pyqt5' if __name__ == '__main__': - sys.exit(load_entry_point('glue_core==1.0.0', 'gui_scripts', 'glue')()) + sys.exit(load_entry_point('glue_core==1.0.1', 'gui_scripts', 'glue')())