File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
# TODO: check with Python 3, but need to fix the
34
34
# errors first
35
- python-version : ' 3.7 '
35
+ python-version : ' 3.8 '
36
36
architecture : ' x64'
37
37
- run : python -m pip install --upgrade pip setuptools jsonschema
38
38
- run : pip install -e .[pylint,pycodestyle,pyflakes]
Original file line number Diff line number Diff line change 24
24
strategy :
25
25
fail-fast : false
26
26
matrix :
27
- PYTHON_VERSION : ['3.9 ', '3.8 ', '3.7 ']
27
+ PYTHON_VERSION : ['3.10 ', '3.9 ', '3.8 ']
28
28
timeout-minutes : 10
29
29
steps :
30
30
- uses : actions/cache@v1
Original file line number Diff line number Diff line change 24
24
strategy :
25
25
fail-fast : false
26
26
matrix :
27
- PYTHON_VERSION : ['3.9 ', '3.8 ', '3.7 ']
27
+ PYTHON_VERSION : ['3.10 ', '3.9 ', '3.8 ']
28
28
timeout-minutes : 10
29
29
steps :
30
30
- uses : actions/cache@v1
Original file line number Diff line number Diff line change 24
24
strategy :
25
25
fail-fast : false
26
26
matrix :
27
- PYTHON_VERSION : ['3.9 ', '3.8 ', '3.7 ']
27
+ PYTHON_VERSION : ['3.10 ', '3.9 ', '3.8 ']
28
28
timeout-minutes : 10
29
29
steps :
30
30
- uses : actions/cache@v1
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ image] ( https://github.com/python-ls/python-ls/workflows/Linux%20tests/badge.svg )] ( https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Linux+tests%22 ) [ ![ image] ( https://github.com/python-ls/python-ls/workflows/Mac%20tests/badge.svg )] ( https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Mac+tests%22 ) [ ![ image] ( https://github.com/python-ls/python-ls/workflows/Windows%20tests/badge.svg )] ( https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Windows+tests%22 ) [ ![ image] ( https://img.shields.io/github/license/python-ls/python-ls.svg )] ( https://github.com/python-ls/python-ls/blob/master/LICENSE )
4
4
5
- A Python 3.7 + implementation of the [ Language Server Protocol] ( https://github.com/Microsoft/language-server-protocol ) .
5
+ A Python 3.8 + implementation of the [ Language Server Protocol] ( https://github.com/Microsoft/language-server-protocol ) .
6
6
(Note: versions <1.4 should still work with Python 3.6)
7
7
8
8
## Installation
@@ -81,7 +81,7 @@ apk add py3-lsp-server
81
81
82
82
Installing these plugins will add extra functionality to the language server:
83
83
84
- - [pylsp-mypy](https://github.com/Richardk2n/pylsp-mypy): [MyPy](http://mypy-lang.org/) type checking for Python >=3.7 .
84
+ - [pylsp-mypy](https://github.com/Richardk2n/pylsp-mypy): [MyPy](http://mypy-lang.org/) type checking for Python >=3.8 .
85
85
- [pyls-isort](https://github.com/paradoxxxzero/pyls-isort): code formatting using [isort](https://github.com/PyCQA/isort) (automatic import sorting).
86
86
- [python-lsp-black](https://github.com/python-lsp/python-lsp-black): code formatting using [Black](https://github.com/psf/black).
87
87
- [pyls-memestra](https://github.com/QuantStack/pyls-memestra): detecting the use of deprecated APIs.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ authors = [{name = "Python Language Server Contributors"}]
11
11
description = " Python Language Server for the Language Server Protocol"
12
12
readme = " README.md"
13
13
license = {text = " MIT" }
14
- requires-python = " >=3.7 "
14
+ requires-python = " >=3.8 "
15
15
dependencies = [
16
16
" jedi>=0.17.2,<0.20.0" ,
17
17
" python-lsp-jsonrpc>=1.0.0" ,
You can’t perform that action at this time.
0 commit comments