File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 14
14
- name : Set up Python
15
15
uses : actions/setup-python@v4
16
16
with :
17
- python-version : " 3.10 "
17
+ python-version : " 3.11 "
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 11
11
- name : Set up Python
12
12
uses : actions/setup-python@v4
13
13
with :
14
- python-version : " 3.10 "
14
+ python-version : " 3.11 "
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 39
39
- name : Set up Python
40
40
uses : actions/setup-python@v4
41
41
with :
42
- python-version : " 3.10 "
42
+ python-version : " 3.11 "
43
43
- name : Install test dependencies
44
44
run : |
45
45
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -22,35 +22,35 @@ whitelist_externals =
22
22
python
23
23
commands =
24
24
pip install -U setuptools
25
- py{38,39,311 }: pytest tests {posargs}
26
- py{310 }: pytest tests --cov-report =term-missing --cov =graphql_server {posargs}
25
+ py{38,39,310 }: pytest tests {posargs}
26
+ py{311 }: pytest tests --cov-report =term-missing --cov =graphql_server {posargs}
27
27
28
28
[testenv:black]
29
- basepython = python3.10
29
+ basepython = python3.11
30
30
deps = -e.[dev]
31
31
commands =
32
32
black --check graphql_server tests
33
33
34
34
[testenv:flake8]
35
- basepython = python3.10
35
+ basepython = python3.11
36
36
deps = -e.[dev]
37
37
commands =
38
38
flake8 setup.py graphql_server tests
39
39
40
40
[testenv:import-order]
41
- basepython = python3.10
41
+ basepython = python3.11
42
42
deps = -e.[dev]
43
43
commands =
44
44
isort graphql_server/ tests/
45
45
46
46
[testenv:mypy]
47
- basepython = python3.10
47
+ basepython = python3.11
48
48
deps = -e.[dev]
49
49
commands =
50
50
mypy graphql_server tests --ignore-missing-imports
51
51
52
52
[testenv:manifest]
53
- basepython = python3.10
53
+ basepython = python3.11
54
54
deps = -e.[dev]
55
55
commands =
56
56
check-manifest -v
You can’t perform that action at this time.
0 commit comments