Skip to content

Commit 40efeb7

Browse files
committed
Moved requirements.txt to main dir so it can be found
1 parent 7378360 commit 40efeb7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/lint.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222
uses: actions/setup-python@v4
2323
with:
2424
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
25+
- name: Install dependencies (flake8)
26+
run: pip install -r requirements.txt
2927
- name: Lint
3028
run: flake8 code/addon --max-line-length=130 --extend-exclude=addon/globalPlugins/MathCAT/yaml/*
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
####### requirements.txt #######
22
#
33
###### Requirements for automated lint ######
4-
flake8 ~= 3.8
4+
flake8 >= 3.8
55
flake8-tabs == 2.1.0

0 commit comments

Comments
 (0)