Skip to content

Commit 5a624bd

Browse files
committed
Modify setup.py and README to show Python 3 addition
1 parent 758ecd3 commit 5a624bd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is an implementation of graphql subscriptions in Python. It uses the apoll
66

77
Meant to be used in conjunction with [graphql-python](https://github.com/graphql-python) / [graphene](http://graphene-python.org/) server and [apollo-client](http://dev.apollodata.com/) for graphql. The api is below, but if you want more information, consult the apollo graphql libraries referenced above, and specifcally as it relates to using their graphql subscriptions client.
88

9-
Initial implementation. Good test coverage. Currently only works with Python 2.
9+
Initial implementation. Good test coverage. Works with both Python 2 / 3.
1010

1111
## Installation
1212
```

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='graphql-subscriptions',
20-
version='0.1.8',
20+
version='0.1.9',
2121
author='Heath Ballard',
2222
author_email='[email protected]',
2323
description=('A port of apollo-graphql subscriptions for python, using\
@@ -33,6 +33,10 @@
3333
'Environment :: Web Environment',
3434
'Programming Language :: Python :: 2',
3535
'Programming Language :: Python :: 2.7',
36+
'Programming Language :: Python :: 3',
37+
'Programming Language :: Python :: 3.4',
38+
'Programming Language :: Python :: 3.5',
39+
'Programming Language :: Python :: 3.6',
3640
'License :: OSI Approved :: MIT License'
3741
],
3842
install_requires=[

0 commit comments

Comments
 (0)