From 54202e8df555d1d5133fb9484e804247fa2d8026 Mon Sep 17 00:00:00 2001 From: "Soojin (Min) Choi" Date: Thu, 8 Jun 2023 11:01:10 -0700 Subject: [PATCH 1/2] Remove jupyter depenency from readme (#21375) Edited readme to accurately represent exclusion of Jupyter ext installation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d27ec8e762f5..8a5df6720717 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The Python extension does offer [some support](https://github.com/microsoft/vsco ## Installed extensions -The Python extension will automatically install the [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance) and [Jupyter](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter) extensions to give you the best experience when working with Python files and Jupyter notebooks. However, Pylance is an optional dependency, meaning the Python extension will remain fully functional if it fails to be installed. You can also [uninstall](https://code.visualstudio.com/docs/editor/extension-marketplace#_uninstall-an-extension) it at the expense of some features if you’re using a different language server. +The Python extension will automatically install the [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance) extension to give you the best experience when working with Python files. However, Pylance is an optional dependency, meaning the Python extension will remain fully functional if it fails to be installed. You can also [uninstall](https://code.visualstudio.com/docs/editor/extension-marketplace#_uninstall-an-extension) it at the expense of some features if you’re using a different language server. Extensions installed through the marketplace are subject to the [Marketplace Terms of Use](https://cdn.vsassets.io/v/M146_20190123.39/_content/Microsoft-Visual-Studio-Marketplace-Terms-of-Use.pdf). From b6bafcddec21aa9b433a7ebf3db3467a7c6b9acf Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 8 Jun 2023 12:12:03 -0700 Subject: [PATCH 2/2] Update version for release --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 22f40819786d..e39a9ca3fa55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "python", - "version": "2023.10.0-rc", + "version": "2023.10.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "python", - "version": "2023.10.0-rc", + "version": "2023.10.0", "license": "MIT", "dependencies": { "@iarna/toml": "^2.2.5", diff --git a/package.json b/package.json index 4f5e5ce5c225..b2d6635ffe4b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "python", "displayName": "Python", "description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.", - "version": "2023.10.0-rc", + "version": "2023.10.0", "featureFlags": { "usingNewInterpreterStorage": true },