File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 45
45
run : python -c "import sys; print(sys.version)"
46
46
- name : Install dependencies
47
47
run : |
48
- python -m pip install --upgrade pipenv
49
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
48
+ if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
50
49
- name : Lint with flake8
51
50
run : |
52
51
# stop the build if there are Python syntax errors or undefined names
Original file line number Diff line number Diff line change
1
+ -r requirements.txt
2
+ flake8 == 7.1.2 ; python_full_version >= '3.8.1'
3
+ iniconfig == 2.0.0 ; python_version >= '3.7'
4
+ mccabe == 0.7.0 ; python_version >= '3.6'
5
+ packaging == 24.2 ; python_version >= '3.8'
6
+ pluggy == 1.5.0 ; python_version >= '3.8'
7
+ pycodestyle == 2.12.1 ; python_version >= '3.8'
8
+ pyflakes == 3.2.0 ; python_version >= '3.8'
9
+ pytest == 8.3.5 ; python_version >= '3.8'
Original file line number Diff line number Diff line change 1
1
-i https://pypi.org/simple
2
- flake8 == 7.1.2 ; python_full_version >= '3.8.1'
3
- iniconfig == 2.0.0 ; python_version >= '3.7'
4
- mccabe == 0.7.0 ; python_version >= '3.6'
5
- packaging == 24.2 ; python_version >= '3.8'
6
- pluggy == 1.5.0 ; python_version >= '3.8'
7
- pycodestyle == 2.12.1 ; python_version >= '3.8'
8
- pyflakes == 3.2.0 ; python_version >= '3.8'
9
- pytest == 8.3.5 ; python_version >= '3.8'
10
2
sortedcontainers == 2.4.0
You can’t perform that action at this time.
0 commit comments