We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7378360 commit 40efeb7Copy full SHA for 40efeb7
.github/workflows/lint.yaml
@@ -22,9 +22,7 @@ jobs:
22
uses: actions/setup-python@v4
23
with:
24
python-version: 3.11
25
- - name: Install flake8
26
- run: pip install flake8
27
- - name: Install dependencies
28
- run: pip install -r .github/workflows/requirements.txt
+ - name: Install dependencies (flake8)
+ run: pip install -r requirements.txt
29
- name: Lint
30
run: flake8 code/addon --max-line-length=130 --extend-exclude=addon/globalPlugins/MathCAT/yaml/*
.github/workflows/requirements.txt requirements.txt.github/workflows/requirements.txt renamed to requirements.txt
@@ -1,5 +1,5 @@
1
####### requirements.txt #######
2
#
3
###### Requirements for automated lint ######
4
-flake8 ~= 3.8
+flake8 >= 3.8
5
flake8-tabs == 2.1.0
0 commit comments