From 4cd406f908bd2a4380e2a431ddf703aeed63a817 Mon Sep 17 00:00:00 2001
From: Trevor Nederlof <trevor.nederlof@posit.co>
Date: Fri, 2 Feb 2024 16:16:43 +0000
Subject: [PATCH] Update workbench_jupyterlab version

---
 internal/jupyter/install.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/jupyter/install.go b/internal/jupyter/install.go
index 51f0edc..0b623b3 100644
--- a/internal/jupyter/install.go
+++ b/internal/jupyter/install.go
@@ -24,7 +24,7 @@ func InstallJupyter(pythonPath string) error {
 
 // Install various Jupyter related packages from PyPI
 func InstallJupyterAndComponents(pythonPath string) error {
-	licenseCommand := "PIP_ROOT_USER_ACTION=ignore " + pythonPath + " -m pip install --no-warn-script-location --disable-pip-version-check jupyter jupyterlab==3.6.5 rsp_jupyter rsconnect_jupyter workbench_jupyterlab==1.1.1"
+	licenseCommand := "PIP_ROOT_USER_ACTION=ignore " + pythonPath + " -m pip install --no-warn-script-location --disable-pip-version-check jupyter jupyterlab==3.6.5 rsp_jupyter rsconnect_jupyter workbench_jupyterlab==1.1.315"
 	err := system.RunCommand(licenseCommand, true, 2, true)
 	if err != nil {
 		return fmt.Errorf("issue installing Jupyter with the command '%s': %w", licenseCommand, err)