-
Notifications
You must be signed in to change notification settings - Fork 160
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
Python 3.7 compatibility #436
Comments
Should be easy to fix: just add Would you create a Pull Request? |
Any progress? |
+1 |
This was referenced Jul 20, 2018
|
vir-mir
pushed a commit
that referenced
this issue
Aug 13, 2018
* python3.7 support * do not test with python nightly * add python nightly (now 3.7-dev) testing * add forgotten @asyncio.coroutine decorator * tambourine dances trying to prevent lower tests coverage * python3.7: __aiter__ MUST return object that implement __anext__ * use psycopg2.connect `async_` kwarg * Await result before first async iteration in 3.5.2+ in SQL alchemy execute. Supplements pull request #437 for #436. * Fix for RuntimeError in Python 3.7+ from unexpected StopIteration raise. The behavior of iteration has changed to where a StopIteration exception should not be raised inside a generator except by something unexpected. * Allow QA of StopAsyncIteration lines, give flake8 built-in hint in <3.5 Resolves Python 3.4 flake8 continuous integration failure. * bare StopAsyncIteration breaks code coverage in python 3.4 * Revert "bare StopAsyncIteration breaks code coverage in python 3.4" This reverts commit 8d82522. * Add proper job for 3.7 * Add 3.7 job w/o debug
in master. @asvetlov release new version please |
Nice! |
Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SyntaxError in python 3.7 (name
async
is not allowed)The text was updated successfully, but these errors were encountered: