Skip to content

Commit 69bf12c

Browse files
committed
Merge pull request #1 from woodb/pypy-py35
Supported Python versions added, bump pytest 2.7.3
2 parents 1c1b13f + e8d23c2 commit 69bf12c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,20 @@ def run_tests(self):
4040
'Intended Audience :: Developers',
4141
'Topic :: Software Development :: Libraries',
4242
'Programming Language :: Python :: 2',
43+
'Programming Language :: Python :: 2.7',
44+
'Programming Language :: Python :: 3',
45+
'Programming Language :: Python :: 3.3',
46+
'Programming Language :: Python :: 3.4',
47+
'Programming Language :: Python :: 3.5',
48+
'Programming Language :: Python :: Implementation :: PyPy',
4349
],
4450

4551
keywords='api graphql protocol rest',
4652

4753
packages=find_packages(exclude=['tests']),
4854

4955
install_requires=[],
50-
tests_require=['pytest>=2.7.2'],
56+
tests_require=['pytest>=2.7.3'],
5157

5258
cmdclass={'test': PyTest},
5359
)

0 commit comments

Comments
 (0)