Skip to content

Commit dd8230f

Browse files
committed
chore: undo issue relinking devin did
1 parent 20d3c42 commit dd8230f

File tree

51 files changed

+75
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+75
-75
lines changed

build/ci/postInstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function fixJupyterLabRenderers() {
109109
}
110110

111111
/**
112-
* Ensures extension loads in safari (https://github.com/deepnote/vscode-deepnote/issues/10621)
112+
* Ensures extension loads in safari (https://github.com/microsoft/vscode-jupyter/issues/10621)
113113
* Some of the regexes are not supported in safari and not required either.
114114
*/
115115
function fixStripComments() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# List of requirements for conda environments that cannot be installed using conda
2-
# Pinned per ipywidget 8 support: https://github.com/deepnote/vscode-deepnote/issues/11598
2+
# Pinned per ipywidget 8 support: https://github.com/microsoft/vscode-jupyter/issues/11598
33
matplotlib
44
ipympl

build/venv-test-ipywidgets7-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pandas
44
# Install jupyter itself so we end up with a kernel
55
jupyter
66
# List of requirements for conda environments that cannot be installed using conda
7-
# Pinned per ipywidget 8 support: https://github.com/deepnote/vscode-deepnote/issues/11598
7+
# Pinned per ipywidget 8 support: https://github.com/microsoft/vscode-jupyter/issues/11598
88
ipywidgets==8.1.7
99
anywidget
1010
matplotlib

src/kernels/errors/jupyterWaitForIdleError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { BaseKernelError } from './types';
1010
*
1111
* Cause:
1212
* Jupyter [session](https://jupyterlab.readthedocs.io/en/stable/api/modules/services.session.html) never returns an 'idle' status message on startup.
13-
* This might happen if the kernel hangs. One such example was this issue: https://github.com/deepnote/vscode-deepnote/issues/10940
13+
* This might happen if the kernel hangs. One such example was this issue: https://github.com/microsoft/vscode-jupyter/issues/10940
1414
*
1515
* Handled by:
1616
* Should show up in the executing cell (if there is one), otherwise a notification will pop up.

src/kernels/execution/cellExecution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class CellExecutionFactory {
6161
*
6262
* WARNING: Do not dispose `request: Kernel.IShellFuture` object.
6363
* Even after request.done & execute_reply is sent we could have more messages coming from iopub.
64-
* Further details here https://github.com/deepnote/vscode-deepnote/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
64+
* Further details here https://github.com/microsoft/vscode-jupyter/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
6565
*
6666
*/
6767
export class CellExecution implements ICellExecution, IDisposable {
@@ -471,7 +471,7 @@ export class CellExecution implements ICellExecution, IDisposable {
471471

472472
// WARNING: Do not dispose `request`.
473473
// Even after request.done & execute_reply is sent we could have more messages coming from iopub.
474-
// We have tests for this & check https://github.com/deepnote/vscode-deepnote/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
474+
// We have tests for this & check https://github.com/microsoft/vscode-jupyter/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
475475

476476
try {
477477
// When the request finishes we are done
@@ -484,7 +484,7 @@ export class CellExecution implements ICellExecution, IDisposable {
484484
// try {
485485
// // The time from the kernel is more accurate, as that will ignore the network latency.
486486
// // Note: There could be an offset between the time on the kernel and the time on the client.
487-
// // https://github.com/deepnote/vscode-deepnote/issues/14072
487+
// // https://github.com/microsoft/vscode-jupyter/issues/14072
488488
// completedTime = new Date(reply.header.date).getTime();
489489
// } catch {
490490
// //

src/kernels/execution/cellExecutionMessageHandler.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export class CellExecutionMessageHandler implements IDisposable {
225225
this.execution = cellExecution;
226226
// We're in all messages.
227227
// When using the `interact` function in Python, we can get outputs from comm messages even before execution has completed.
228-
// See https://github.com/deepnote/vscode-deepnote/issues/9503 for more information on why we need to monitor anyMessage and iopubMessage signals.
228+
// See https://github.com/microsoft/vscode-jupyter/issues/9503 for more information on why we need to monitor anyMessage and iopubMessage signals.
229229
this.kernel.anyMessage.connect(this.onKernelAnyMessage, this);
230230
this.kernel.iopubMessage.connect(this.onKernelIOPubMessage, this);
231231

@@ -395,13 +395,13 @@ export class CellExecutionMessageHandler implements IDisposable {
395395
}
396396
}
397397
// We're only interested in messages after execution has completed.
398-
// See https://github.com/deepnote/vscode-deepnote/issues/9503 for more information.
398+
// See https://github.com/microsoft/vscode-jupyter/issues/9503 for more information.
399399
if (direction !== 'send' || !this.completedExecution) {
400400
return;
401401
}
402402
if (jupyterLab.KernelMessage.isCommMsgMsg(msg) && this.ownedCommIds.has(msg.content.comm_id)) {
403403
// Looks like we have a comm msg request sent by some output or the like.
404-
// See https://github.com/deepnote/vscode-deepnote/issues/9503 for more information.
404+
// See https://github.com/microsoft/vscode-jupyter/issues/9503 for more information.
405405
this.ownedRequestMsgIds.add(msg.header.msg_id);
406406
}
407407
}
@@ -411,11 +411,11 @@ export class CellExecutionMessageHandler implements IDisposable {
411411
}
412412

413413
// We're only interested in messages after execution has completed.
414-
// See https://github.com/deepnote/vscode-deepnote/issues/9503 for more information.
414+
// See https://github.com/microsoft/vscode-jupyter/issues/9503 for more information.
415415

416416
// Handle iopub messages that are sent from Jupyter in response to some
417417
// comm message (requests) sent by an output widget.
418-
// See https://github.com/deepnote/vscode-deepnote/issues/9503 for more information.
418+
// See https://github.com/microsoft/vscode-jupyter/issues/9503 for more information.
419419
if (
420420
!msg.parent_header ||
421421
!('msg_id' in msg.parent_header) ||
@@ -497,7 +497,7 @@ export class CellExecutionMessageHandler implements IDisposable {
497497
// try {
498498
// // The time from the kernel is more accurate, as that will ignore the network latency.
499499
// // Note: There could be an offset between the time on the kernel and the time on the client.
500-
// // https://github.com/deepnote/vscode-deepnote/issues/14072
500+
// // https://github.com/microsoft/vscode-jupyter/issues/14072
501501
// // this.startTime = new Date(msg.header.date).getTime();
502502
// } catch {
503503
// //
@@ -980,7 +980,7 @@ export class CellExecutionMessageHandler implements IDisposable {
980980
}
981981

982982
if (msg.parent_header.msg_type === 'comm_msg' && msg.header.msg_type === 'stream') {
983-
// Fix for https://github.com/deepnote/vscode-deepnote/issues/15996
983+
// Fix for https://github.com/microsoft/vscode-jupyter/issues/15996
984984
// We're not interested in stream messages that are part of comm messages.
985985
return;
986986
}

src/kernels/execution/codeExecution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const extensionIdsPerExtension = new Map<string, number>();
3232
* WARNING: Do not dispose `request: Kernel.IShellFuture` object.
3333
* Even after request.done & execute_reply is sent we could have more messages coming from iopub.
3434
* E.g. we could have messages from a bg thread.
35-
* Further details here https://github.com/deepnote/vscode-deepnote/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
35+
* Further details here https://github.com/microsoft/vscode-jupyter/issues/232 & https://github.com/jupyter/jupyter_client/issues/297
3636
*/
3737
export class CodeExecution implements ICodeExecution, IDisposable {
3838
public readonly type = 'code';

src/kernels/execution/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function sortOutputItemsBasedOnDisplayOrder(outputItems: NotebookCellOutputItem[
7171
let indexOfMimeTypeB = orderOfMimeTypes.findIndex((mime) => isMimeTypeMatch(mime, outputItemB.mime));
7272
// Sometimes we can have mime types with empty data, e.g. when using holoview we can have `application/vnd.holoviews_load.v0+json` with empty value.
7373
// & in these cases we have HTML/JS and those take precedence.
74-
// https://github.com/deepnote/vscode-deepnote/issues/6109
74+
// https://github.com/microsoft/vscode-jupyter/issues/6109
7575
if (isEmptyVendoredMimeType(outputItemA)) {
7676
indexOfMimeTypeA = -1;
7777
}

src/kernels/jupyter/session/jupyterKernelSessionFactory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ export class JupyterKernelSessionFactory implements IKernelSessionFactory {
310310

311311
// If kernelName is empty this can cause problems for servers that don't
312312
// understand that empty kernel name means the default kernel.
313-
// See https://github.com/deepnote/vscode-deepnote/issues/5290
313+
// See https://github.com/microsoft/vscode-jupyter/issues/5290
314314
const kernelName =
315315
getNameOfKernelConnection(options.kernelConnection) ?? options.kernelSpecManager?.specs?.default ?? '';
316316

src/kernels/kernelDependencyService.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export class KernelDependencyService implements IKernelDependencyService {
268268
const options = [installOption];
269269
if (resource && !cannotChangeKernels) {
270270
// Due to a bug in our code, if we don't have a resource, don't display the option to change kernels.
271-
// https://github.com/deepnote/vscode-deepnote/issues/6135
271+
// https://github.com/microsoft/vscode-jupyter/issues/6135
272272
options.push(selectKernelOption);
273273
}
274274
options.push(moreInfoOption);

0 commit comments

Comments
 (0)