We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a262459 commit d38fbafCopy full SHA for d38fbaf
.github/workflows/test_djelme.yml
@@ -11,10 +11,12 @@ permissions:
11
jobs:
12
lint:
13
runs-on: ubuntu-latest
14
- container: python:3.7-slim
15
steps:
16
- uses: actions/checkout@v3
17
- - run: pip install tox
+ - uses: actions/setup-python@v4
+ with:
18
+ python_version: 3.9 # must match language_version in .pre-commit-config.yaml
19
+ - run: pip install -U tox
20
- run: TOXENV=lint tox
21
22
.pre-commit-config.yaml
@@ -3,7 +3,7 @@ repos:
3
rev: 22.8.0
4
hooks:
5
- id: black
6
- language_version: python3.7
+ language_version: python3.9
7
- repo: https://github.com/PyCQA/flake8
8
rev: 5.0.4
9
0 commit comments