Unverified Commit 04550829 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

jupyter updates 2024-09-13 (#341588)

parents e3e53b69 39167ccf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,14 +11,14 @@

buildPythonPackage rec {
  pname = "ipycanvas";
  version = "0.13.2";
  version = "0.13.3";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Ujh9nYf2WVXzlVL7eSfEReXl5JN9hTgU2RDL6O+g+3k=";
    hash = "sha256-ToZ8UJsB9cTPwAn32SHjLloSoCmshW54wE/xW2VpLEo=";
  };

  # We relax dependencies here instead of pulling in a patch because upstream
+2 −2
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

buildPythonPackage rec {
  pname = "jupyterlab-execute-time";
  version = "3.1.2";
  version = "3.2.0";
  pyproject = true;

  src = fetchPypi {
    pname = "jupyterlab_execute_time";
    inherit version;
    hash = "sha256-DiyGsoNXXh+ieMfpSrA6A/5c0ftNV9Ygs9Tl2/VEdbk=";
    hash = "sha256-mxO2XCwTm/q7P2/xcGxNM+1aViA6idApdggzThW8nAs=";
  };

  # jupyterlab is required to build from source but we use the pre-build package
+2 −2
Original line number Diff line number Diff line
@@ -24,14 +24,14 @@

buildPythonPackage rec {
  pname = "marimo";
  version = "0.8.13";
  version = "0.8.15";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-x1f71IaFO/LVNmgCS/eKa/Ia/KETToGexLK1FD3gWZM=";
    hash = "sha256-S+lhoyM8s6wLFq1oGJMdzq+s+Uhn76qMgbkMUwpVr44=";
  };

  build-system = [ setuptools ];
+3 −3
Original line number Diff line number Diff line
@@ -16,15 +16,15 @@

buildPythonPackage rec {
  pname = "mkdocs-jupyter";
  version = "0.24.8";
  version = "0.25.0";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.9";

  src = fetchPypi {
    pname = "mkdocs_jupyter";
    inherit version;
    hash = "sha256-Cadi9ITVQNnA6UTTSyjLU2oyhp4iS0YOL8eRsUP3aUA=";
    hash = "sha256-4mwdNBkWvFf5bqP5PY0KiPx3yH1M7iIvZtIAd5jZJPU=";
  };

  pythonRelaxDeps = [ "nbconvert" ];
+0 −10
Original line number Diff line number Diff line
--- a/nbdime/webapp/nbdimeserver.py
+++ b/nbdime/webapp/nbdimeserver.py
@@ -388,6 +388,7 @@
         'jinja2_env': env,
         'local_hostnames': ['localhost', '127.0.0.1'],
         'cookie_secret': base64.encodebytes(os.urandom(32)), # Needed even for an unsecured server.
+        'allow_unauthenticated_access': True,
     }
 
     try:
Loading