You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this PR, we're trying to write a test that uses jedi. The overall project tests against 3.8-dev, but of course trying to use jedi under python 3.8 currently errors out with:
E FileNotFoundError: [Errno 2] No such file or directory: '/home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/parso/python/grammar38.txt'
Totally reasonable, and we can skip the test on 3.8 for now.
But... I don't want to just mark the test as skipped on Python 3.8, because then it'll remain skipped and forgotten forever, past when 3.8 comes out :-).
Do you have a usual timeline for adding grammars for new python releases? For example, we could mark the test as skipped until 3.8-beta is released, or 3.8-final...
The text was updated successfully, but these errors were encountered:
If you want you can just add a PR for the Python 3.8 grammar. I don't think anything has change from 3.7 and once it will we can just change the grammar file. There's nothing more you need to do.
For Jedi it's a bit more complicated. 3.7 support is not really out yet and I'm still working on that. However once 3.7 (for Jedi is supported we can probably also support 3.8-dev.
In this PR, we're trying to write a test that uses jedi. The overall project tests against 3.8-dev, but of course trying to use jedi under python 3.8 currently errors out with:
Totally reasonable, and we can skip the test on 3.8 for now.
But... I don't want to just mark the test as skipped on Python 3.8, because then it'll remain skipped and forgotten forever, past when 3.8 comes out :-).
Do you have a usual timeline for adding grammars for new python releases? For example, we could mark the test as skipped until 3.8-beta is released, or 3.8-final...
The text was updated successfully, but these errors were encountered: