Skip to content

Commit eda90ed

Browse files
authored
Allow graphql-core 3.2.6 on stable branch (#547)
* Bump graphql-core on stable to 3.2.6 * Using Ubuntu 24.04 for GitHub actions * Remove obsolete 3.7 Python version from GihHub actions
1 parent 7881a9b commit eda90ed

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- uses: actions/checkout@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88

99
steps:
1010
- uses: actions/checkout@v3

.github/workflows/tests.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8"]
12-
os: [ubuntu-20.04, windows-latest]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8"]
12+
os: [ubuntu-24.04, windows-latest]
1313
exclude:
14-
- os: windows-latest
15-
python-version: "3.7"
1614
- os: windows-latest
1715
python-version: "3.9"
1816
- os: windows-latest
@@ -40,7 +38,7 @@ jobs:
4038
TOXENV: ${{ matrix.toxenv }}
4139

4240
single_extra:
43-
runs-on: ubuntu-20.04
41+
runs-on: ubuntu-24.04
4442
strategy:
4543
fail-fast: false
4644
matrix:
@@ -60,7 +58,7 @@ jobs:
6058
run: pytest tests --${{ matrix.dependency }}-only
6159

6260
coverage:
63-
runs-on: ubuntu-20.04
61+
runs-on: ubuntu-24.04
6462

6563
steps:
6664
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
install_requires = [
6-
"graphql-core>=3.2,<3.2.5",
6+
"graphql-core>=3.2,<3.2.7",
77
"yarl>=1.6,<2.0",
88
"backoff>=1.11.1,<3.0",
99
"anyio>=3.0,<5",

0 commit comments

Comments
 (0)