Skip to content

Commit

Permalink
Pin graphql-core to <3 (#60)
Browse files Browse the repository at this point in the history
Pin graphql-core to <3
  • Loading branch information
jkimbo committed Dec 5, 2019
2 parents 4183613 + 4aa86e3 commit e22153e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ max-line-length = 160
[isort]
known_first_party=graphql

[pytest]
[tool:pytest]
norecursedirs = venv .tox .cache
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

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

setup(
name="Flask-GraphQL",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ setenv =
deps =
pytest>=2.7.2
pytest-flask>=0.10.0
graphql-core>=2.1
graphql-server-core>=1.1
graphql-core>=2.1,<3
graphql-server-core>=1.1,<2
Flask>=0.10.0
pytest-cov
commands =
Expand Down

0 comments on commit e22153e

Please sign in to comment.