Skip to content

Commit cb5126a

Browse files
committed
Merge branch 'deduplicate' into channels2
2 parents f805f3e + 7797c29 commit cb5126a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1281
-1351
lines changed

.gitignore

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ __pycache__/
99
# Distribution / packaging
1010
.Python
1111
env/
12+
venv/
13+
.venv/
1214
build/
1315
develop-eggs/
1416
dist/
@@ -42,7 +44,7 @@ htmlcov/
4244
.cache
4345
nosetests.xml
4446
coverage.xml
45-
*,cover
47+
*.cover
4648
.hypothesis/
4749

4850
# Translations
@@ -63,6 +65,8 @@ target/
6365
.DS_Store
6466

6567
.mypy_cache/
68+
69+
.idea/
6670
.vscode/
6771

68-
*.sqlite3
72+
*.sqlite3

.travis.yml

+6-17
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,18 @@
1-
# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py
21
deploy:
32
provider: pypi
43
distributions: sdist bdist_wheel
5-
user: syrusakbary
4+
user: __token__
65
password:
7-
secure: !!binary |
8-
ekpBaVZYWWd6MXdRWXI4ZkovU2kwQVBEMGZneXl0Q3k3MTVSa3VvK3UvTm10V3hJZGs0V3ZNSFZG
9-
T3lGK28ycDYvYUxwa2V0S1dVQmhONElSRlI2dWlhU1kzV0hQZ2N2ZFQ2MGk0TVFMSE5qWGZGelIx
10-
T2pMOERxUG1PWFNRRytBRU1NeVhGT0xrZjg1ZnZocXFmUmxGZG1qZFVnZDBJQ0ZSUnZGS0toOGc5
11-
OHJJTGVxMEVZWktuT1JneGJqdGF5Y05rVTlINnBNK09BV0xEeWpPK3JSVDRxSnluYldTUURmRUg1
12-
SWNuN3Y2WEowa3RFYlcrSGxja0JWbVR4ZHpQcTNCZ2dWOHZiRnQxR3N1dkFicG5CZUJ5OGlaelhN
13-
bWhnVGxReGtjZmVyMHZ1TFI1S2dQb3daNVA0ZThmaU0zd09aZlJZTTM1a3F4UGNqdndjRWZCNFl0
14-
Q2JKcGxqYld2QTM5K3RVVzI4WWpvSDlOVGl0WlBTS3UrVVFCMEJuQXlJcTBQR3VseHoxNXdpcFM0
15-
STVkcEVsalp6TnlHV04zd0dmemFPTmFBbklFbjZtVDRFWWdHVFRiUEYyL2h2bmxKaGxDbklPRGJF
16-
M3I4bFJMY0ZZaVNGQXpscEF2ZDQ2aGZYbHVveHNNT0tzUzRKd1dtVU1qSEVJMzk1OTdBbEtkZUNt
17-
SlF5OVhvL0lJTE94cWxQWVA5OTlETU5BRkJJdHlzcHZwakEzMlY1K0pBcVd1LzhwL08xeWZVb3dI
18-
ellSNitpRkNPZ3p2R2dFVUZITGowbjNDaDlPd2tEeUtkUlMxVVJ1WnlEYnZmbEdNYzYwYWllbWEz
19-
Smprd0l6U2diaHNtdzA0L3JpMzNZUHR1a3dTYkhUWEdzYm0zNFBzL1VUQXQzdDk1MG9CNWlxeHc9
20-
true:
6+
secure: yMCR3m2DdcLpVoZTH+/8fOZ/RiZ8zV8+PezH2cnUEJjH8GRrs7h0OjPYGFILgeeN1OoB6CxBaNpOLNfkeHlQ6AVtsNHJ2CdLB9RvL6+DsG6hVqOcL4drTZtQJRk2ZPtWr1hT6BNkrP8/pOu6war+MALJ+01n7Wj/Ot+m8Qp5TXT82man6bkUJMGKbiTHOh6I58R3sSjLcXiTL6kEifUenu5go1w9l5gX3NzaentHsB8mDdWi2EN4rALBkVub+cCLAowERxvG+kYgjPSTe3F2X2RI5DDO9/zCZiOOI7mgJQgx/NNNRdVre2RgjrDy6RxXuYME5pjfVRr8h7boBlwidpiY6oDGeZoDXr9S+41AgV5z3wKmf++Q6EpzgfDBgb1GD4kycXbkp10zhJu2fn8pSjQERG9ve9lqpoUzaS9NG3sX4r1UwiuBz8FPksRGxtD1xG0xjZnUumXfxfl+Ge5mEjRSZbLT76q7cearDnD9Qx2Z9DFrrjvt66jdmaOfxsbdzXMiLCLPy6Ht3luEhYbvhyKf1jlvd78qXypVnp0DPZhVcLaq1HW2wA4ZmS9g7ZnvxtCNfxwwbf1Uy7AGhuRBFS88mr1th7BJvd23aNdjPENOBMxeFInjzQ06E2vXRt3TzJVn1ViBhVGFyU1uh1x7apne7XmOPAPt4XKIFYMx9QA=
7+
on:
218
python: 2.7
22-
repo: graphql-python/graphql_ws
9+
repo: graphql-python/graphql-ws
2310
tags: true
2411
install: pip install -U tox-travis
2512
language: python
2613
python:
14+
- 3.8
15+
- 3.7
2716
- 3.6
2817
- 3.5
2918
- 2.7

CONTRIBUTING.rst

+2-13
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Ready to contribute? Here's how to set up `graphql_ws` for local development.
6868

6969
$ mkvirtualenv graphql_ws
7070
$ cd graphql_ws/
71-
$ python setup.py develop
71+
$ pip install -e .[dev]
7272

7373
4. Create a branch for local development::
7474

@@ -79,11 +79,8 @@ Ready to contribute? Here's how to set up `graphql_ws` for local development.
7979
5. When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox::
8080

8181
$ flake8 graphql_ws tests
82-
$ python setup.py test or py.test
8382
$ tox
8483

85-
To get flake8 and tox, just pip install them into your virtualenv.
86-
8784
6. Commit your changes and push your branch to GitHub::
8885

8986
$ git add .
@@ -101,14 +98,6 @@ Before you submit a pull request, check that it meets these guidelines:
10198
2. If the pull request adds functionality, the docs should be updated. Put
10299
your new functionality into a function with a docstring, and add the
103100
feature to the list in README.rst.
104-
3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check
101+
3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7 and 3.8. Check
105102
https://travis-ci.org/graphql-python/graphql_ws/pull_requests
106103
and make sure that the tests pass for all supported Python versions.
107-
108-
Tips
109-
----
110-
111-
To run a subset of tests::
112-
113-
$ py.test tests.test_graphql_ws
114-

HISTORY.rst

+20-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,25 @@
22
History
33
=======
44

5+
0.3.0 (2018-09-25)
6+
==================
7+
8+
- Django channels (v1) server (with example app).
9+
10+
- Websockets lib server (with example app).
11+
12+
- Observable aiter server.
13+
14+
15+
0.2.0 (2017-11-18)
16+
==================
17+
18+
- Add gevent subscription server.
19+
20+
- Add example flask gevent app.
21+
22+
523
0.1.0 (2017-10-15)
6-
------------------
24+
==================
725

8-
* First release on PyPI.
26+
- First release on PyPI.

MANIFEST.in

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ include CONTRIBUTING.rst
33
include HISTORY.rst
44
include LICENSE
55
include README.rst
6+
include tox.ini
67

78
graft graphql_ws/django/templates
89
graft examples
910
prune examples/django_channels2/.cache
10-
recursive-include tests *
11-
recursive-exclude * __pycache__
12-
recursive-exclude * *.py[co]
11+
graft tests
12+
global-exclude __pycache__
13+
global-exclude *.py[co]
1314

1415
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif

0 commit comments

Comments
 (0)