mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-16 14:17:02 +02:00
python3-jupyter_server: update to 2.11.0.
This commit is contained in:
parent
f08d667db3
commit
b4800dc925
2 changed files with 2 additions and 49 deletions
|
@ -1,47 +0,0 @@
|
|||
commit 13def167faf8898b2e19fc04f24c0ff6f6cc35fa
|
||||
Author: Gonzalo Tornaría <tornaria@cmat.edu.uy>
|
||||
Date: Mon Oct 16 10:38:36 2023 -0300
|
||||
|
||||
utcnow deprecation
|
||||
|
||||
See: https://github.com/jupyter-server/jupyter_server/issues/1296#issuecomment-1751887150
|
||||
|
||||
diff --git a/jupyter_server/_tz.py b/jupyter_server/_tz.py
|
||||
index 24847b430..ea3e65fe2 100644
|
||||
--- a/jupyter_server/_tz.py
|
||||
+++ b/jupyter_server/_tz.py
|
||||
@@ -7,7 +7,7 @@ Just UTC-awareness right now
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
from __future__ import annotations
|
||||
|
||||
-from datetime import datetime, timedelta, tzinfo
|
||||
+from datetime import datetime, timedelta, tzinfo, timezone
|
||||
from typing import Callable
|
||||
|
||||
# constant for zero offset
|
||||
@@ -42,6 +42,12 @@ def utc_aware(unaware: Callable[..., datetime]) -> Callable[..., datetime]:
|
||||
utcfromtimestamp = utc_aware(datetime.utcfromtimestamp)
|
||||
utcnow = utc_aware(datetime.utcnow)
|
||||
|
||||
+def utcnow() -> datetime:
|
||||
+ """ Return timezone-aware UTC timestamp"""
|
||||
+ return datetime.now(timezone.utc)
|
||||
+
|
||||
+def utcfromtimestamp(timestamp):
|
||||
+ return datetime.fromtimestamp(timestamp, timezone.utc)
|
||||
|
||||
def isoformat(dt: datetime) -> str:
|
||||
"""Return iso-formatted timestamp
|
||||
diff --git a/tests/test_gateway.py b/tests/test_gateway.py
|
||||
index 37ce8b03e..e1ea0869e 100644
|
||||
--- a/tests/test_gateway.py
|
||||
+++ b/tests/test_gateway.py
|
||||
@@ -78,7 +78,7 @@ omitted_kernels: Dict[str, bool] = {}
|
||||
|
||||
def generate_model(name):
|
||||
"""Generate a mocked kernel model. Caller is responsible for adding model to running_kernels dictionary."""
|
||||
- dt = datetime.utcnow().isoformat() + "Z" # noqa
|
||||
+ dt = datetime.now(timezone.utc).isoformat().replace("+00:00", "Z") # noqa
|
||||
kernel_id = str(uuid.uuid4())
|
||||
model = {
|
||||
"id": kernel_id,
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'python3-jupyter_server'
|
||||
pkgname=python3-jupyter_server
|
||||
version=2.9.1
|
||||
version=2.11.0
|
||||
revision=1
|
||||
build_style=python3-pep517
|
||||
# these tests are flaky with jupyter_core 5.5.0
|
||||
|
@ -23,7 +23,7 @@ license="BSD-3-Clause"
|
|||
homepage="https://github.com/jupyter-server/jupyter_server"
|
||||
changelog="https://raw.githubusercontent.com/jupyter-server/jupyter_server/main/CHANGELOG.md"
|
||||
distfiles="${PYPI_SITE}/j/jupyter-server/jupyter_server-${version}.tar.gz"
|
||||
checksum=9ba71be4b9c16e479e4c50c929f8ac4b1015baf90237a08681397a98c76c7e5e
|
||||
checksum=78c97ec8049f9062f0151725bc8a1364dfed716646a66819095e0e8a24793eba
|
||||
|
||||
if [ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ]; then
|
||||
# these tests fail on CI (connect to a tcp address)
|
||||
|
|
Loading…
Add table
Reference in a new issue