File tree Expand file tree Collapse file tree 5 files changed +13
-12
lines changed Expand file tree Collapse file tree 5 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - uses : actions/checkout@v1
14
- - name : Set up Python 3.8
15
- uses : actions/setup-python@v1
13
+ - uses : actions/checkout@v3
14
+ - name : Set up Python 3.10
15
+ uses : actions/setup-python@v4
16
16
with :
17
- python-version : 3.8
17
+ python-version : " 3.10 "
18
18
- name : Build wheel and source tarball
19
19
run : |
20
20
pip install wheel
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v1
11
- - name : Set up Python 3.8
12
- uses : actions/setup-python@v1
10
+ - uses : actions/checkout@v3
11
+ - name : Set up Python 3.10
12
+ uses : actions/setup-python@v4
13
13
with :
14
- python-version : 3.8
14
+ python-version : " 3.10 "
15
15
- name : Install dependencies
16
16
run : |
17
17
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 32
32
- django : " 4.0"
33
33
python-version : " 3.10"
34
34
steps :
35
- - uses : actions/checkout@v1
35
+ - uses : actions/checkout@v3
36
36
- name : Set up Python ${{ matrix.python-version }}
37
- uses : actions/setup-python@v1
37
+ uses : actions/setup-python@v4
38
38
with :
39
39
python-version : ${{ matrix.python-version }}
40
40
- name : Install dependencies
Original file line number Diff line number Diff line change 1
1
default_language_version :
2
- python : python3.8
2
+ python : python3.10
3
3
repos :
4
4
- repo : https://github.com/PyCQA/flake8
5
5
rev : 5.0.4
Original file line number Diff line number Diff line change @@ -40,12 +40,13 @@ deps =
40
40
commands = {posargs:py.test --cov =graphene_django graphene_django examples}
41
41
42
42
[testenv:black]
43
- basepython = python3.8
43
+ basepython = python3.10
44
44
deps = -e.[dev]
45
45
commands =
46
46
black --exclude " /migrations/" graphene_django examples setup.py --check
47
47
48
48
[testenv:pre-commit]
49
+ basepython = python3.10
49
50
skip_install = true
50
51
deps = pre-commit
51
52
commands =
You can’t perform that action at this time.
0 commit comments