Skip to content

Commit e22153e

Browse files
authored
Pin graphql-core to <3 (#60)
Pin graphql-core to <3
2 parents 4183613 + 4aa86e3 commit e22153e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ max-line-length = 160
55
[isort]
66
known_first_party=graphql
77

8-
[pytest]
8+
[tool:pytest]
99
norecursedirs = venv .tox .cache

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
required_packages = ["graphql-core>=2.1", "flask>=0.7.0", "graphql-server-core>=1.1"]
3+
required_packages = ["graphql-core>=2.1,<3", "flask>=0.7.0", "graphql-server-core>=1.1,<2"]
44

55
setup(
66
name="Flask-GraphQL",

Diff for: tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ setenv =
88
deps =
99
pytest>=2.7.2
1010
pytest-flask>=0.10.0
11-
graphql-core>=2.1
12-
graphql-server-core>=1.1
11+
graphql-core>=2.1,<3
12+
graphql-server-core>=1.1,<2
1313
Flask>=0.10.0
1414
pytest-cov
1515
commands =

0 commit comments

Comments
 (0)