|
1 | 1 | # Python |
2 | 2 |
|
3 | 3 | An extension with rich support for the [Python language](https://www.python.org/), with features including the following and more: |
4 | | -* Linting ([Prospector](https://pypi.io/project/prospector/), [Pylint](https://pypi.io/project/pylint/), [pycodestyle](https://pypi.io/project/pycodestyle/)/Pep8, [Flake8](https://pypi.io/project/flake8/), [pydocstyle](https://pypi.io/project/pydocstyle/) with config files and plugins) |
| 4 | +* Linting ([Prospector](https://pypi.io/project/prospector/), [Pylint](https://pypi.io/project/pylint/), [pycodestyle](https://pypi.io/project/pycodestyle/)/Pep8, [Flake8](https://pypi.io/project/flake8/), [pylama](https://github.com/klen/pylama), [pydocstyle](https://pypi.io/project/pydocstyle/) with config files and plugins) |
5 | 5 | * Intellisense (autocompletion with support for PEP-0484) |
6 | 6 | * Scientific tools (Jupyter/IPython) |
7 | 7 | * Auto indenting |
@@ -99,30 +99,14 @@ For further information and details continue through to the [documentation](http |
99 | 99 |
|
100 | 100 | ## [Change Log](https://github.com/DonJayamanne/pythonVSCode/blob/master/CHANGELOG.md) |
101 | 101 |
|
102 | | -### Current Version 0.5.0 |
103 | | -* Remove dependency on zmq when using Jupyter or IPython (pure python solution) |
104 | | -* Added a default keybinding for ```Jupyter:Run Selection/Line``` of ```ctrl+alt+enter``` |
105 | | -* Changes to update settings.json with path to python using [native API](https://github.com/DonJayamanne/pythonVSCode/commit/bce22a2b4af87eaf40669c6360eff3675280cdad) |
106 | | -* Changes to use [native API](https://github.com/DonJayamanne/pythonVSCode/commit/bce22a2b4af87eaf40669c6360eff3675280cdad) for formatting when saving documents |
107 | | -* Reusing existing terminal instead of creating new terminals |
108 | | -* Limiting linter messages to opened documents (hide messages if document is closed) [#375](https://github.com/DonJayamanne/pythonVSCode/issues/375) |
109 | | -* Resolving extension load errors when [#375](https://github.com/DonJayamanne/pythonVSCode/issues/375) |
110 | | -* Fixes to discovering unittests [#386](https://github.com/DonJayamanne/pythonVSCode/issues/386) |
111 | | -* Fixes to sending code to terminal on Windows [#387](https://github.com/DonJayamanne/pythonVSCode/issues/387) |
112 | | -* Fixes to executing python file in terminal on Windows [#385](https://github.com/DonJayamanne/pythonVSCode/issues/385) |
113 | | -* Fixes to launching local help (documentation) on Linux |
114 | | -* Fixes to typo in configuration documentation [#391](https://github.com/DonJayamanne/pythonVSCode/pull/391) |
115 | | -* Fixes to use ```python.pythonPath``` when sorting imports [#393](https://github.com/DonJayamanne/pythonVSCode/pull/393) |
116 | | -* Fixes to linters to handle situations when line numbers aren't returned [#399](https://github.com/DonJayamanne/pythonVSCode/pull/399) |
117 | | -* Fixes to signature tooltips when docstring is very long [#368](https://github.com/DonJayamanne/pythonVSCode/issues/368), [#113](https://github.com/DonJayamanne/pythonVSCode/issues/113) |
118 | | - |
119 | 102 | ### Thanks |
| 103 | +* [Thijs Damsma](https://github.com/tdamsma) |
| 104 | +* [Siddhartha Gandhi](https://github.com/gandhis1) |
| 105 | +* [Nobuhiro Nakamura](https://github.com/lefb766) |
| 106 | +* [Water Zheng](https://github.com/zhengxiaoyao0716) |
| 107 | +* [Andris Raugulis](https://github.com/arthepsy) |
120 | 108 | * [Igor Novozhilov](https://github.com/IgorNovozhilov) |
121 | | - + Fix for autocompletion and code navigation with unicode characters [#372](https://github.com/DonJayamanne/pythonVSCode/issues/372), [#364](https://github.com/DonJayamanne/pythonVSCode/issues/364) |
122 | 109 | * [Luca Mussi](https://github.com/splendido) |
123 | | - + Fix typo in configuration documentation [#391](https://github.com/DonJayamanne/pythonVSCode/pull/391) |
124 | | - + Fix to use ```python.pythonPath``` when sorting imports [#393](https://github.com/DonJayamanne/pythonVSCode/pull/393) |
125 | | -* [Andris Raugulis](https://github.com/arthepsy) |
126 | 110 |
|
127 | 111 | ## Source |
128 | 112 |
|
|
0 commit comments