Skip to content

Commit eca6be7

Browse files
committed
Fix requirement specification (#41)
1 parent dc150c4 commit eca6be7

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ htmlcov/
4242
.cache
4343
nosetests.xml
4444
coverage.xml
45-
*,cover
45+
*.cover
4646
.hypothesis/
4747

4848
# Translations
@@ -63,6 +63,8 @@ target/
6363
.DS_Store
6464

6565
.mypy_cache/
66+
67+
.idea/
6668
.vscode/
6769

6870
*.sqlite3

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ deploy:
2424
install: pip install -U tox-travis
2525
language: python
2626
python:
27+
- 3.7
2728
- 3.6
2829
- 3.5
2930
- 2.7

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
history = history_file.read()
1515

1616
requirements = [
17-
"graphql-core>=2.0<3",
17+
"graphql-core>=2.0,<3",
1818
# TODO: put package requirements here
1919
]
2020

@@ -31,7 +31,7 @@
3131

3232
setup(
3333
name="graphql-ws",
34-
version="0.3.0",
34+
version="0.3.1",
3535
description="Websocket server for GraphQL subscriptions",
3636
long_description=readme + "\n\n" + history,
3737
author="Syrus Akbary",
@@ -55,6 +55,8 @@
5555
"Programming Language :: Python :: 3.3",
5656
"Programming Language :: Python :: 3.4",
5757
"Programming Language :: Python :: 3.5",
58+
"Programming Language :: Python :: 3.6",
59+
"Programming Language :: Python :: 3.7"
5860
],
5961
test_suite="tests",
6062
tests_require=test_requirements,

0 commit comments

Comments
 (0)