Skip to content

Commit 966edab

Browse files
authored
Update version, and changelog. (#19602)
* Update version, and changelog. * Pin setuptools. * move for tighter pinning. * Force setoptconf
1 parent 90802a0 commit 966edab

File tree

4 files changed

+69
-5
lines changed

4 files changed

+69
-5
lines changed

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,65 @@
11
# Changelog
22

3+
Please look at https://github.com/microsoft/vscode-python/releases for the latest releases and changelogs.
4+
5+
## 2022.10.1 (14 July 2022)
6+
7+
### Code Health
8+
9+
- Update app insights key by [karthiknadig](https://github.com/karthiknadig) in ([#19463](https://github.com/microsoft/vscode-python/pull/19463)).
10+
11+
### Thanks
12+
13+
Thanks to the following projects which we fully rely on to provide some of
14+
our features:
15+
16+
- [debugpy](https://pypi.org/project/debugpy/)
17+
- [isort](https://pypi.org/project/isort/)
18+
- [jedi](https://pypi.org/project/jedi/)
19+
and [parso](https://pypi.org/project/parso/)
20+
- [jedi-language-server](https://pypi.org/project/jedi-language-server/)
21+
- [Pylance](https://github.com/microsoft/pylance-release)
22+
23+
Also thanks to the various projects we provide integrations with which help
24+
make this extension useful:
25+
26+
- Debugging support:
27+
[Django](https://pypi.org/project/Django/),
28+
[Flask](https://pypi.org/project/Flask/),
29+
[gevent](https://pypi.org/project/gevent/),
30+
[Jinja](https://pypi.org/project/Jinja/),
31+
[Pyramid](https://pypi.org/project/pyramid/),
32+
[PySpark](https://pypi.org/project/pyspark/),
33+
[Scrapy](https://pypi.org/project/Scrapy/),
34+
[Watson](https://pypi.org/project/Watson/)
35+
- Formatting:
36+
[autopep8](https://pypi.org/project/autopep8/),
37+
[black](https://pypi.org/project/black/),
38+
[yapf](https://pypi.org/project/yapf/)
39+
- Interpreter support:
40+
[conda](https://conda.io/),
41+
[direnv](https://direnv.net/),
42+
[pipenv](https://pypi.org/project/pipenv/),
43+
[poetry](https://pypi.org/project/poetry/),
44+
[pyenv](https://github.com/pyenv/pyenv),
45+
[venv](https://docs.python.org/3/library/venv.html#module-venv),
46+
[virtualenv](https://pypi.org/project/virtualenv/)
47+
- Linting:
48+
[bandit](https://pypi.org/project/bandit/),
49+
[flake8](https://pypi.org/project/flake8/),
50+
[mypy](https://pypi.org/project/mypy/),
51+
[prospector](https://pypi.org/project/prospector/),
52+
[pylint](https://pypi.org/project/pylint/),
53+
[pydocstyle](https://pypi.org/project/pydocstyle/),
54+
[pylama](https://pypi.org/project/pylama/)
55+
- Testing:
56+
[pytest](https://pypi.org/project/pytest/),
57+
[unittest](https://docs.python.org/3/library/unittest.html#module-unittest)
58+
59+
And finally thanks to the [Python](https://www.python.org/) development team and
60+
community for creating a fantastic programming language and community to be a
61+
part of!
62+
363
## 2022.10.0 (7 July 2022)
464

565
### Enhancements

build/test-requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# pin setup tools to prevent issue with 'use_2to3'
2+
setuptools==63.2.0
3+
setoptconf==0.3.0
4+
15
# Install flake8 first, as both flake8 and autopep8 require pycodestyle,
26
# but flake8 has a tighter pinning.
37
flake8

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python",
33
"displayName": "Python",
44
"description": "IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), Jupyter Notebooks, code formatting, refactoring, unit tests, and more.",
5-
"version": "2022.11.0-dev",
5+
"version": "2022.12.0-rc",
66
"featureFlags": {
77
"usingNewInterpreterStorage": true
88
},
@@ -1822,7 +1822,7 @@
18221822
"vscode-tas-client": "^0.1.22",
18231823
"winreg": "^1.2.4",
18241824
"xml2js": "^0.4.19",
1825-
"which":"^2.0.2"
1825+
"which": "^2.0.2"
18261826
},
18271827
"devDependencies": {
18281828
"@istanbuljs/nyc-config-typescript": "^1.0.2",
@@ -1846,7 +1846,7 @@
18461846
"@types/uuid": "^8.3.4",
18471847
"@types/vscode": "~1.68.0",
18481848
"@types/winreg": "^1.2.30",
1849-
"@types/which":"^2.0.1",
1849+
"@types/which": "^2.0.1",
18501850
"@types/xml2js": "^0.4.2",
18511851
"@typescript-eslint/eslint-plugin": "^3.7.0",
18521852
"@typescript-eslint/parser": "^3.7.0",

0 commit comments

Comments
 (0)