Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Adjust graphene require version.
  • Loading branch information
megshao authored Mar 12, 2019
1 parent 6138464 commit 1f768c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name="queryfilter",
version="0.4.5",
version="0.4.6",
description=("Allow same query interface to be shared between Django ORM,"
"SQLAlchemy, and GraphQL backend."),
long_description=open(os.path.join(source_root, "README.rst")).read(),
Expand All @@ -29,7 +29,7 @@
package_data={
"": ["*.pyi", "*.rst", "*.md"],
},
install_requires=["graphene~=2.0.1", "python-dateutil"],
install_requires=["graphene>=2.0.1,<3", "python-dateutil"],
setup_requires=["pytest-runner"],
extras_require={
'dev': required_dev
Expand Down

0 comments on commit 1f768c6

Please sign in to comment.