public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter-server/
Date: Fri, 31 May 2024 04:22:43 +0000 (UTC)	[thread overview]
Message-ID: <1717128269.6db3e2f9fbabb4993a8a373225b28bc690467213.mgorny@gentoo> (raw)

commit:     6db3e2f9fbabb4993a8a373225b28bc690467213
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 31 04:04:29 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 31 04:04:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6db3e2f9

dev-python/jupyter-server: Bump to 2.14.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/jupyter-server/Manifest                 |  1 +
 .../jupyter-server/jupyter-server-2.14.1.ebuild    | 75 ++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/dev-python/jupyter-server/Manifest b/dev-python/jupyter-server/Manifest
index 1dc07fc31ac6..88d1041b7c03 100644
--- a/dev-python/jupyter-server/Manifest
+++ b/dev-python/jupyter-server/Manifest
@@ -1 +1,2 @@
 DIST jupyter_server-2.14.0.tar.gz 719491 BLAKE2B 6a742c2b4a269a23af7c54e72d551045cc17b017efe88e0cb5848aff9d9a9d0855c74ed066b316bb87d15f49984cc5787250b6191f036c8ae8bd0af7a6b53695 SHA512 57258afae5e64af6b499795795c469fd08fb2562da770ba06b78716dccee12f6662b0d6465739857aa5f3fea084eb2d8553c7205edc7b6813e4f5d61815917b3
+DIST jupyter_server-2.14.1.tar.gz 719107 BLAKE2B 2b38fbc709346bdb8c2734dd5f22cf958f0555660af0df23b08b6af8b3dee9130daa0538b7e78c5a0c63d66511a973babbb544c638d1aed267368ebba7d10c36 SHA512 1770fe0fc34c164952a74b75bf765fc737ab59cc52c04f61c0a28d5f6c747587ddee4c6cd3dcb90e2ccb72029d0f52de321569ed7a55bddbad50326e728b53fd

diff --git a/dev-python/jupyter-server/jupyter-server-2.14.1.ebuild b/dev-python/jupyter-server/jupyter-server-2.14.1.ebuild
new file mode 100644
index 000000000000..51d0d35e0e59
--- /dev/null
+++ b/dev-python/jupyter-server/jupyter-server-2.14.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Core services, APIs, and REST endpoints to Jupyter web applications"
+HOMEPAGE="
+	https://jupyter.org/
+	https://github.com/jupyter-server/jupyter_server/
+	https://pypi.org/project/jupyter-server/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	>=dev-python/anyio-3.1.0[${PYTHON_USEDEP}]
+	>=dev-python/argon2-cffi-21.1[${PYTHON_USEDEP}]
+	>=dev-python/jinja-3.0.3[${PYTHON_USEDEP}]
+	>=dev-python/jupyter-client-7.4.4[${PYTHON_USEDEP}]
+	>=dev-python/jupyter-core-5.1.0[${PYTHON_USEDEP}]
+	>=dev-python/jupyter-server-terminals-0.4.4[${PYTHON_USEDEP}]
+	>=dev-python/jupyter-events-0.9.0[${PYTHON_USEDEP}]
+	>=dev-python/nbconvert-6.4.4[${PYTHON_USEDEP}]
+	>=dev-python/nbformat-5.3.0[${PYTHON_USEDEP}]
+	>=dev-python/overrides-5.0[${PYTHON_USEDEP}]
+	>=dev-python/packaging-22.0[${PYTHON_USEDEP}]
+	>=dev-python/prometheus-client-0.9[${PYTHON_USEDEP}]
+	>=dev-python/pyzmq-24[${PYTHON_USEDEP}]
+	>=dev-python/send2trash-1.8.2[${PYTHON_USEDEP}]
+	>=dev-python/terminado-0.8.3[${PYTHON_USEDEP}]
+	>=dev-python/tornado-6.2[${PYTHON_USEDEP}]
+	>=dev-python/traitlets-5.6.0[${PYTHON_USEDEP}]
+	>=dev-python/websocket-client-1.7[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	dev-python/hatch-jupyter-builder[${PYTHON_USEDEP}]
+	test? (
+		dev-python/ipykernel[${PYTHON_USEDEP}]
+		dev-python/flaky[${PYTHON_USEDEP}]
+		dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
+		>=dev-python/pytest-jupyter-0.7[${PYTHON_USEDEP}]
+		dev-python/pytest-timeout[${PYTHON_USEDEP}]
+		dev-python/pytest-tornasync[${PYTHON_USEDEP}]
+		dev-python/requests[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_DESELECT=(
+		# This fails if your terminal is zsh (and maybe other non-bash as well?)
+		tests/test_terminal.py
+		# Fails because above is ignored
+		tests/auth/test_authorizer.py
+		# Fails with additional extensions installed
+		tests/extension/test_app.py::test_stop_extension
+	)
+
+	# FIXME: tests seem to be affected by previously installed version
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	epytest \
+		-p pytest_tornasync.plugin \
+		-p jupyter_server.pytest_plugin \
+		-p pytest_console_scripts \
+		-p pytest_timeout \
+		-o tmp_path_retention_policy=all
+}


             reply	other threads:[~2024-05-31  4:22 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-31  4:22 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-27  9:44 [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter-server/ Michał Górny
2024-07-27  6:49 Arthur Zamarin
2024-07-13  4:46 Michał Górny
2024-07-12 10:36 Michał Górny
2024-06-15  8:42 Michał Górny
2024-06-15  8:40 Arthur Zamarin
2024-04-27  8:26 Michał Górny
2024-04-27  6:53 Michał Górny
2024-04-12  3:35 Michał Górny
2024-03-22  4:38 Michał Górny
2024-03-21 20:42 Arthur Zamarin
2024-03-04 14:52 Michał Górny
2024-02-17 21:17 Sam James
2024-02-03 19:09 Sam James
2024-02-03 10:59 Sam James
2024-02-03 10:54 Sam James
2024-02-03 10:46 Sam James
2024-02-03 10:11 Arthur Zamarin
2024-02-03  8:42 Arthur Zamarin
2024-01-19  5:10 Michał Górny
2024-01-19  5:10 Michał Górny
2024-01-18 19:48 Sam James
2024-01-17  2:46 Ionen Wolkens
2024-01-16 19:22 Michał Górny
2024-01-11 15:24 Michał Górny
2024-01-10  4:42 Michał Górny
2024-01-04  4:35 Michał Górny
2023-12-30 14:32 Michał Górny
2023-12-30 14:25 Arthur Zamarin
2023-12-22  5:14 Ionen Wolkens
2023-12-15 15:50 Arthur Zamarin
2023-12-15 10:30 Arthur Zamarin
2023-12-08 19:51 Arthur Zamarin
2023-12-07 11:58 Michał Górny
2023-12-06  6:51 Michał Górny
2023-12-05  7:33 Arthur Zamarin
2023-12-02 20:28 Sam James
2023-12-02  9:38 Arthur Zamarin
2023-11-28  5:26 Michał Górny
2023-11-21 19:05 Michał Górny
2023-11-20 15:02 Michał Górny
2023-11-15 17:10 Michał Górny
2023-11-15 16:34 Arthur Zamarin
2023-11-15 14:46 Michał Górny
2023-11-14  1:38 Sam James
2023-11-14  0:38 Sam James
2023-11-13 17:41 Michał Górny
2023-10-26 13:37 Michał Górny
2023-10-25  9:05 Michał Górny
2023-10-25  7:43 Michał Górny
2023-10-25  7:03 Arthur Zamarin
2023-10-25  5:54 Michał Górny
2023-10-24 19:23 Arthur Zamarin
2023-10-24 19:15 Arthur Zamarin
2023-10-24 18:44 Michał Górny
2023-10-24 17:51 Michał Górny
2023-10-16 13:56 Michał Górny
2023-10-03  7:20 Arthur Zamarin
2023-10-03  5:38 Arthur Zamarin
2023-10-03  1:55 Sam James
2023-09-26 15:23 Arthur Zamarin
2023-09-08 18:50 Arthur Zamarin
2023-09-07 20:16 Sam James
2023-08-31 13:22 Michał Górny
2023-08-20 16:04 Michał Górny
2023-08-05 12:37 Arthur Zamarin
2023-07-24 20:04 WANG Xuerui
2023-07-24 11:01 Jakov Smolić
2023-07-21 14:50 Arthur Zamarin
2023-07-21 13:05 Arthur Zamarin
2023-07-21 11:41 Arthur Zamarin
2023-07-21  7:25 Andrew Ammerlaan
2023-04-28 15:41 Michał Górny
2023-04-28 15:24 Arthur Zamarin
2023-03-29 13:34 Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1717128269.6db3e2f9fbabb4993a8a373225b28bc690467213.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox