diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2024-02-21 18:51:35 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2024-02-21 18:51:35 +0100 |
commit | 90125ea5ec54431bfafb504def8c4551e3d43fa4 (patch) | |
tree | 9dc911235b661e15e7ade665e96824404bd54cf4 /.github/workflows/wee-slack.yml | |
parent | 609e8c79786ae7510062cd40342bb5043065f98f (diff) | |
download | wee-slack-90125ea5ec54431bfafb504def8c4551e3d43fa4.tar.gz |
Specify minimum python version for tools in pyproject.toml
Diffstat (limited to '.github/workflows/wee-slack.yml')
-rw-r--r-- | .github/workflows/wee-slack.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml index d7e6fcf..fb6f3d7 100644 --- a/.github/workflows/wee-slack.yml +++ b/.github/workflows/wee-slack.yml @@ -24,11 +24,11 @@ jobs: - run: poetry install - - run: poetry run ruff format --check --target-version py37 + - run: poetry run ruff format --check - - run: poetry run ruff check --target-version py37 main.py slack tests typings + - run: poetry run ruff check main.py slack tests typings - - run: poetry run pyright --pythonversion 3.7 main.py slack tests typings + - run: poetry run pyright main.py slack tests typings - run: poetry run pytest tests |