specify py38 in black config as it doesn't support py39 as a target yet (#4605)

but run black using python3.9 in pre-commit
This commit is contained in:
Leo McArdle 2020-11-20 15:55:15 +00:00 коммит произвёл GitHub
Родитель f1fbe5bdf2
Коммит dff8495338
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -13,6 +13,7 @@ repos:
hooks:
- id: black
exclude: "^.*/migrations/.*$|kitsune/sumo/db_strings.py"
language_version: python3.9
- repo: https://gitlab.com/pycqa/flake8.git
rev: 3.8.4
hooks:

Просмотреть файл

@ -1,4 +1,7 @@
[tool.black]
line-length = 99
target-version = ['py39']
# NB: this can only be updated once black supports the target python version,
# so may lag behind the version of python we're using. This shouldn't matter
# unless we're using completely new syntax:
target-version = ['py38']
exclude = "^.*/migrations/.*$|kitsune/sumo/db_strings.py"