We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59de0f8 commit fba2e7eCopy full SHA for fba2e7e
.github/workflows/static.yml
@@ -21,7 +21,7 @@ jobs:
21
- uses: actions/cache@v1
22
with:
23
path: ~/.cache/pip
24
- key: static-pip-${{ hashFiles('setup.py') }}
+ key: static-pip-${{ hashFiles('pyproject.toml') }}
25
restore-keys: static-pip-
26
- uses: actions/checkout@v2
27
- uses: actions/setup-python@v2
.github/workflows/test-linux.yml
@@ -26,15 +26,14 @@ jobs:
28
29
- key: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
+ key: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('pyproject.toml') }}
30
restore-keys: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31
32
33
34
python-version: ${{ matrix.PYTHON_VERSION }}
35
architecture: 'x64'
36
- name: Create Jedi environment for testing
37
- if: matrix.PYTHON_VERSION != '2.7'
38
run: |
39
python3 -m venv /tmp/pyenv
40
/tmp/pyenv/bin/python -m pip install loghub
.github/workflows/test-mac.yml
path: ~/Library/Caches/pip
.github/workflows/test-win.yml
@@ -26,7 +26,7 @@ jobs:
path: ~\AppData\Local\pip\Cache
pyproject.toml
@@ -28,22 +28,22 @@ Homepage = "https://github.com/python-lsp/python-lsp-server"
[project.optional-dependencies]
all = [
"autopep8>=1.6.0,<1.7.0",
- "flake8>=5.0.0,<5.1.0",
+ "flake8>=5.0.0,<7",
"mccabe>=0.7.0,<0.8.0",
- "pycodestyle>=2.9.0,<2.10.0",
+ "pycodestyle>=2.9.0,<2.11.0",
"pydocstyle>=2.0.0",
- "pyflakes>=2.5.0,<2.6.0",
+ "pyflakes>=2.5.0,<3.1.0",
"pylint>=2.5.0",
"rope>1.2.0",
"yapf",
"whatthepatch"
]
41
autopep8 = ["autopep8>=1.6.0,<1.7.0"]
42
-flake8 = ["flake8>=5.0.0,<5.1.0"]
+flake8 = ["flake8>=5.0.0,<7"]
43
mccabe = ["mccabe>=0.7.0,<0.8.0"]
44
-pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"]
+pycodestyle = ["pycodestyle>=2.9.0,<2.11.0"]
45
pydocstyle = ["pydocstyle>=2.0.0"]
46
-pyflakes = ["pyflakes>=2.5.0,<2.6.0"]
+pyflakes = ["pyflakes>=2.5.0,<3.1.0"]
47
pylint = ["pylint>=2.5.0"]
48
rope = ["rope>1.2.0"]
49
yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"]
0 commit comments