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 53ac7a4Copy full SHA for 53ac7a4
.github/workflows/test_djelme.yml
@@ -11,10 +11,13 @@ 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: alias python${{ steps.setup-py.outputs.python-version }}=${{ steps.setup-py.outputs.python-path }}
20
+ - run: pip install -U tox
21
- run: TOXENV=lint tox
22
23
.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