From 39c71a4506dbabc79e3c8903012f03f71560b232 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Mon, 23 Aug 2021 15:40:40 -0700 Subject: [PATCH 1/2] Remove jupyter from the extension pack. (#17080) * Remove jupyter from the extension pack. * add news item --- gulpfile.js | 2 +- news/2 Fixes/17080.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 news/2 Fixes/17080.md diff --git a/gulpfile.js b/gulpfile.js index bd9a4e0b79ee..27e9024d1490 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -88,7 +88,7 @@ async function addExtensionPackDependencies() { // extension dependencies need not be installed during development const packageJsonContents = await fsExtra.readFile('package.json', 'utf-8'); const packageJson = JSON.parse(packageJsonContents); - packageJson.extensionPack = ['ms-toolsai.jupyter', 'ms-python.vscode-pylance'].concat( + packageJson.extensionPack = ['ms-python.vscode-pylance'].concat( packageJson.extensionPack ? packageJson.extensionPack : [], ); await fsExtra.writeFile('package.json', JSON.stringify(packageJson, null, 4), 'utf-8'); diff --git a/news/2 Fixes/17080.md b/news/2 Fixes/17080.md new file mode 100644 index 000000000000..6d600fcff3e0 --- /dev/null +++ b/news/2 Fixes/17080.md @@ -0,0 +1 @@ +Removing Jupyter extension from the extension pack since it not web enabled. From a3461213a4c9225fbe40e3fdc485e5b093cc586f Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Mon, 23 Aug 2021 15:46:47 -0700 Subject: [PATCH 2/2] Cherry pick and update version for release --- CHANGELOG.md | 62 +++++++++++++++++++++++++++++++++++++++++++ news/2 Fixes/17080.md | 1 - package-lock.json | 2 +- package.json | 2 +- 4 files changed, 64 insertions(+), 3 deletions(-) delete mode 100644 news/2 Fixes/17080.md diff --git a/CHANGELOG.md b/CHANGELOG.md index c99dfd6135b5..871fefcb329a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,67 @@ # Changelog +## 2021.8.4 (23 August 2021) + +### Fixes + +1. Removing Jupyter extension from the extension pack since it not web enabled. + ([#17080](https://github.com/Microsoft/vscode-python/issues/17080)) + +### Thanks + +Thanks to the following projects which we fully rely on to provide some of +our features: + +- [debugpy](https://pypi.org/project/debugpy/) +- [isort](https://pypi.org/project/isort/) +- [jedi](https://pypi.org/project/jedi/) + and [parso](https://pypi.org/project/parso/) +- [jedi-language-server](https://pypi.org/project/jedi-language-server/) +- [Microsoft Python Language Server](https://github.com/microsoft/python-language-server) +- [Pylance](https://github.com/microsoft/pylance-release) +- [exuberant ctags](http://ctags.sourceforge.net/) (user-installed) +- [rope](https://pypi.org/project/rope/) (user-installed) + +Also thanks to the various projects we provide integrations with which help +make this extension useful: + +- Debugging support: + [Django](https://pypi.org/project/Django/), + [Flask](https://pypi.org/project/Flask/), + [gevent](https://pypi.org/project/gevent/), + [Jinja](https://pypi.org/project/Jinja/), + [Pyramid](https://pypi.org/project/pyramid/), + [PySpark](https://pypi.org/project/pyspark/), + [Scrapy](https://pypi.org/project/Scrapy/), + [Watson](https://pypi.org/project/Watson/) +- Formatting: + [autopep8](https://pypi.org/project/autopep8/), + [black](https://pypi.org/project/black/), + [yapf](https://pypi.org/project/yapf/) +- Interpreter support: + [conda](https://conda.io/), + [direnv](https://direnv.net/), + [pipenv](https://pypi.org/project/pipenv/), + [pyenv](https://github.com/pyenv/pyenv), + [venv](https://docs.python.org/3/library/venv.html#module-venv), + [virtualenv](https://pypi.org/project/virtualenv/) +- Linting: + [bandit](https://pypi.org/project/bandit/), + [flake8](https://pypi.org/project/flake8/), + [mypy](https://pypi.org/project/mypy/), + [prospector](https://pypi.org/project/prospector/), + [pylint](https://pypi.org/project/pylint/), + [pydocstyle](https://pypi.org/project/pydocstyle/), + [pylama](https://pypi.org/project/pylama/) +- Testing: + [nose](https://pypi.org/project/nose/), + [pytest](https://pypi.org/project/pytest/), + [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) + +And finally thanks to the [Python](https://www.python.org/) development team and +community for creating a fantastic programming language and community to be a +part of! + ## 2021.8.3 (23 August 2021) ### Fixes diff --git a/news/2 Fixes/17080.md b/news/2 Fixes/17080.md deleted file mode 100644 index 6d600fcff3e0..000000000000 --- a/news/2 Fixes/17080.md +++ /dev/null @@ -1 +0,0 @@ -Removing Jupyter extension from the extension pack since it not web enabled. diff --git a/package-lock.json b/package-lock.json index feb976f9791f..b274a9ee9891 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "python", - "version": "2021.8.3", + "version": "2021.8.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d42e6adfbf6c..2f0fadad47fa 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": "2021.8.3", + "version": "2021.8.4", "featureFlags": { "usingNewInterpreterStorage": true },