Skip to content

Commit eeb2d10

Browse files
committed
[DOP-22129] flake8-commas is not used anymore
1 parent 6bc6dac commit eeb2d10

File tree

3 files changed

+201
-7
lines changed

3 files changed

+201
-7
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
5050
- name: Install dependencies
5151
run: |
5252
poetry install --no-root --all-extras --with dev --without docs,test
53-
pip install -U flake8-commas
5453
5554
- name: Run flake8
5655
run: poetry run flake8 data_rentgen/

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,18 @@ help: ##@Help Show this help
2626

2727

2828

29-
venv: venv-cleanup venv-install##@Env Init venv and install poetry dependencies
29+
venv: venv-cleanup venv-install##@Env Init venv and install poetry dependencies
3030

3131
venv-cleanup: ##@Env Cleanup venv
3232
@rm -rf .venv || true
3333
python -m venv ${VENV}
3434
${PIP} install -U setuptools wheel pip
35-
${PIP} install poetry
35+
${PIP} install poetry poetry-bumpversion
3636

3737
venv-install: ##@Env Install requirements to venv
3838
${POETRY} config virtualenvs.create false
3939
${POETRY} self add poetry-bumpversion
4040
${POETRY} install --no-root --all-extras --with dev,test,docs $(ARGS)
41-
${PIP} install -U flake8-commas
4241
${PIP} install --no-deps sphinx-plantuml
4342

4443

0 commit comments

Comments
 (0)