1414-------------------------------------------------------------------------------
1515
1616<p align =" center " >
17- <img width =" 150 " height =" 150 " src =" https://vignette.wikia.nocookie.net/sqmegapolis/images/4/42/Warning-2-256.png/revision/latest?cb=20130403220740 " >
17+ <img width =" 100 " height =" 100 " src =" https://vignette.wikia.nocookie.net/sqmegapolis/images/4/42/Warning-2-256.png/revision/latest?cb=20130403220740 " >
1818</p >
1919
20- *** Important*** : From 2017-11-19 onwards python-mode uses submodules instead of
21- hard coding 3rd party libraries into its codebase. Please issue the command:
22- ` git submodule update --init --recursive `
23- inside your python-mode folder.
20+ *** Important notes*** :
21+
22+ * From 2017-11-19 onwards python-mode uses submodules instead of
23+ hard coding 3rd party libraries into its codebase. Please issue the command:
24+ ` git submodule update --init --recursive ` inside your python-mode folder.
25+
26+ * From 2019-12-14 onwards ` python-mode ` ** dropped python2 suuport** . If you
27+ still need to use it with python2 you should look for the ` last-py2-support `
28+ branch and/or tag.
2429
2530If you are a new user please clone the repos using the recursive flag:
26- ` git clone --recurse-submodules https://github.com/python-mode/python-mode `
31+
32+ > git clone --recurse-submodules https://github.com/python-mode/python-mode
2733
2834-------------------------------------------------------------------------------
2935
@@ -50,7 +56,7 @@ Why Python-mode?
5056
5157The plugin contains all you need to develop python applications in Vim.
5258
53- * Support Python version 2.6+ and 3.2 +
59+ * Support Python and 3.6 +
5460* Syntax highlighting
5561* Virtualenv support
5662* Run python code (` <leader>r ` )
@@ -75,7 +81,7 @@ Another old presentation here: <http://www.youtube.com/watch?v=YhqsjUUHj6g>.
7581
7682# Requirements
7783
78- Vim >= 7.3 (most features needed +python or + python3 support) (also
84+ Vim >= 7.3 (most features needed +python3 support) (also
7985` --with-features=big ` if you want ` g:pymode_lint_signs ` ).
8086
8187# How to install
@@ -152,7 +158,7 @@ Nevertheless just a refresher on how to submit bugs:
152158Clear all python cache/compiled files (` *.pyc ` files and ` __pycache__ `
153159directory and everything under it). In Linux/Unix/MacOS you can run:
154160
155- ` find . -type f -name '*.pyc' -delete && find . -type d -name '__pycache__' -delete `
161+ ` find . -type f -iname '*.pyc' -o -iname '*.pyo ' -delete && find . -type d -name '__pycache__' -delete `
156162
157163Then start python mode with:
158164
0 commit comments