14
14
-------------------------------------------------------------------------------
15
15
16
16
<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 " >
18
18
</p >
19
19
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.
24
29
25
30
If 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
27
33
28
34
-------------------------------------------------------------------------------
29
35
@@ -50,7 +56,7 @@ Why Python-mode?
50
56
51
57
The plugin contains all you need to develop python applications in Vim.
52
58
53
- * Support Python version 2.6+ and 3.2 +
59
+ * Support Python and 3.6 +
54
60
* Syntax highlighting
55
61
* Virtualenv support
56
62
* Run python code (` <leader>r ` )
@@ -75,7 +81,7 @@ Another old presentation here: <http://www.youtube.com/watch?v=YhqsjUUHj6g>.
75
81
76
82
# Requirements
77
83
78
- Vim >= 7.3 (most features needed +python or + python3 support) (also
84
+ Vim >= 7.3 (most features needed +python3 support) (also
79
85
` --with-features=big ` if you want ` g:pymode_lint_signs ` ).
80
86
81
87
# How to install
@@ -152,7 +158,7 @@ Nevertheless just a refresher on how to submit bugs:
152
158
Clear all python cache/compiled files (` *.pyc ` files and ` __pycache__ `
153
159
directory and everything under it). In Linux/Unix/MacOS you can run:
154
160
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 `
156
162
157
163
Then start python mode with:
158
164
0 commit comments