-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1795 rename async module #1796
1795 rename async module #1796
Changes from 2 commits
0a88d19
43e31c3
5a82e7c
72dde43
07dc716
d338fe1
e81a946
557b919
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,5 @@ examples/frameworks/pylonstest/pylonstest.egg-info/ | |
MANIFEST | ||
nohup.out | ||
setuptools-* | ||
.cache | ||
.eggs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks like a good candidate for having a global .gitignore file. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,6 +49,7 @@ Dariusz Suchojad <[email protected]> | |
David Vincelli <[email protected]> | ||
David Wolever <[email protected]> | ||
Denis Bilenko <[email protected]> | ||
Diego Oliveira <[email protected]> | ||
Dima Barsky <[email protected]> | ||
Djoume Salvetti <[email protected]> | ||
Dmitry Medvinsky <[email protected]> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,14 @@ | |
Changelog | ||
========= | ||
|
||
19.9.0 / 2018/05/26 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would change 2018/05/26 with "not released". |
||
=================== | ||
|
||
- the internal module `gunicorn.workers.async` was renamed to `gunicorn.workers.async` | ||
since ``async`` is now a reserved word in Python 3.7 | ||
(:pr:`1527`) | ||
|
||
|
||
19.8.1 / 2018/04/30 | ||
=================== | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
} | ||
|
||
|
||
if sys.version_info >= (3, 3): | ||
if sys.version_info >= (3, 4): | ||
# gaiohttp worker can be used with Python 3.3+ only. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did this change to match this: https://github.com/benoitc/gunicorn/blob/master/gunicorn/workers/gaiohttp.py#L10 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean the comment |
||
SUPPORTED_WORKERS["gaiohttp"] = "gunicorn.workers.gaiohttp.AiohttpWorker" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
coverage>=4.0,<4.4 # TODO: https://github.com/benoitc/gunicorn/issues/1548 | ||
pytest==3.0.5 | ||
pytest-cov==2.4.0 | ||
pytest | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please leave unrelated changes to another PR. |
||
pytest-cov |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.cache was renamed to .pytest_cache and we already added it to .gitignore.