Skip to content

Commit

Permalink
[requirements] Update formatting packages
Browse files Browse the repository at this point in the history
  • Loading branch information
drcpu-github committed Mar 14, 2024
1 parent 2aecdb1 commit 1150bbf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8 flake8-bugbear flake8-implicit-str-concat isort
pip install -r requirements.txt
- name: Run code checks
run: |
make lint-check
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
files: api/|blockchain/|mockups/|schemas/|scripts/|tests/
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
args: ["-c"]
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 24.2.0
hooks:
- id: black
args: ["--check"]
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.0.0
hooks:
- id: flake8
args: ["--extend-ignore=E203,E501"]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
black==23.7.0
black==24.2.0
cbor==1.0.0
flake8==6.0.0
flake8-bugbear==23.9.16
flake8==7.0.0
flake8-bugbear==24.2.6
flake8-implicit-str-concat==0.4.0
Flask==2.3.2
flask_smorest==0.42.0
gevent==23.7.0
gunicorn==21.2.0
isort==5.10.1
isort==5.13.2
marshmallow==3.20.1
matplotlib==3.5.3
numpy==1.24.4
Expand Down

0 comments on commit 1150bbf

Please sign in to comment.