Skip to content

Commit d430b7b

Browse files
setup.py updated
1 parent c95b914 commit d430b7b

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

setup.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,34 @@
22

33
setup(
44
name="graphene-mongo",
5-
version="0.2.13",
5+
version="0.3.1",
66
description="Graphene Mongoengine integration",
77
long_description=open("README.rst").read(),
88
url="https://github.com/graphql-python/graphene-mongo",
99
author="Abaw Chen",
1010
author_email="[email protected]",
1111
license="MIT",
1212
classifiers=[
13-
"Development Status :: 4 - Beta",
13+
"Development Status :: 1 - Beta",
1414
"Intended Audience :: Developers",
1515
"Topic :: Software Development :: Libraries",
16-
"Programming Language :: Python :: 2.7",
17-
"Programming Language :: Python :: 3.4",
18-
"Programming Language :: Python :: 3.5",
1916
"Programming Language :: Python :: 3.6",
2017
"Programming Language :: Python :: 3.8",
18+
"Programming Language :: Python :: 3.9",
2119
"Programming Language :: Python :: Implementation :: PyPy",
2220
"License :: OSI Approved :: MIT License",
2321
],
2422
keywords="api graphql protocol rest relay graphene mongo mongoengine",
2523
packages=find_packages(exclude=["tests"]),
2624
install_requires=[
27-
"graphene>=2.1.3,<3",
25+
"graphene==3.0b7",
26+
"promise==2.3",
2827
"mongoengine>=0.23.0",
2928
"singledispatch>=3.4.0.3",
3029
"iso8601>=0.1.12",
3130
'futures; python_version < "3.0"'
3231
],
33-
python_requires=">=2.7",
32+
python_requires=">=3.6",
3433
zip_safe=True,
3534
tests_require=["pytest>=3.3.2", "mongomock", "mock"],
3635
)

0 commit comments

Comments
 (0)