Cleanup requirements and run full setup in lint CI job (#1230)

pull/1232/head
Gulshan Singh 3 years ago committed by GitHub
parent 0237c1deff
commit 0d73e9d8c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,11 +18,10 @@ jobs:
with:
python-version: 3.8
- name: Install linters
- name: Install dependencies
run: |
pip install isort
pip install black
pip install flake8
./setup.sh --user
./setup-test-tools.sh --user
sudo snap install shfmt
- name: Run linters

@ -1,6 +1,9 @@
black
coverage==6.4.4; python_version >= '3.7'
black==22.8.0
coverage==6.2; python_version < '3.7'
pytest==7.1.2; python_version >= '3.7'
coverage==6.4.4; python_version >= '3.7'
flake8==5.0.4
testresources==2.0.1
isort==5.10.1
pytest==7.0.1; python_version < '3.7'
types-gdb==12.1.3
pytest==7.1.2; python_version >= '3.7'
types-gdb==12.1.3

@ -3,7 +3,6 @@ capstone==4.0.2
enum34==1.1.10
future==0.18.2
iniconfig==1.1.1
isort==5.10.1
packaging==21.3
pbr==5.9.0
pluggy==1.0.0
@ -16,7 +15,6 @@ pyparsing==3.0.9
python-ptrace==0.9.8
ROPGadget==6.8
six==1.16.0
testresources==2.0.1
tomli==2.0.1; python_version >= '3.7'
tomli==1.2.3; python_version < '3.7'
unicorn==2.0.0; python_version >= '3.7'

Loading…
Cancel
Save