-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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.6 support #1072
Comments
Yep, this should be more of a meta-issue, but we can definitely create new issues for smaller chunk of work. |
I guess we are quite close... I am not aware of any major blockers, but maybe we should do extra sanity checks like running pylint over stdlib or bunch of open source projects (although I can't think of any that uses Python 3.6 exclusive features) and making sure there are no crashes on any of these modules / packages... |
I would expect that most opensource codebases will be slow to add new features of the language, as they need to support older versions. I think running on the stdlib, and its tests would give us a reasonable snapshot of the use of new features. |
I'm also happy to re-run against google-auth. :) |
Adding experimental support for python 3.6, temporarily disabling running pylint for 3.6 because of pylint-dev/pylint#1072
NOTE:
|
@PCManticore @degustaf are we blocked by anything particular except of finishing up some minor pull requests and maybe tweaking |
We are not blocked by anything, just by my lack of time to do the actual release. This should happen this week though. I'll have to check the latest issues regarding 3.6 to see if there is something critical. |
FWIW I just checked the lastest pylint/astroid master with qutebrowser, and it looks ready to go for me. I don't use any Python 3.5/3.6 features though. But even if those won't work, having a release which at least runs with 3.6 would be awesome! 😄 |
The acceptance tests are still failing. But, they are basically failing the same as they do for earlier versions of python. I think we're good to release. |
For the record, the FAQ does not make it clear that pylint doesn't support Python3.6...
--> submitted: #1399 |
Also, does the work done thus far address pylint-dev/astroid#362? |
+1 vote for what @The-Compiler said. Just having pylint run in Python 3.6, even without any new features, would be great. Right now I have to maintain an older Python installation just so I'll have a pylint that runs, which is a PITA. I also restrict my usage of Python 3.6 new features to the minimum - in particular, I still use In the meanwhile, I do use some Python 3.6 features, such as enums, and relying on the order of members in class dictionaries, and so on. Just staying with an older Python version until a "full" pylint release comes out isn't an option for me. Of course, if a "full" release arrives "soon", I'll be even happier - but if we have the option of getting "now" a release that runs in Python 3.6 but doesn't handle all its features, I'll definitely take it. |
I strongly feel like merging #1406 makes us ready to push new release. |
There are only two issues which block this release for now. I'll try to address these issues this week and hopefully next week I will do the release:
|
On second thought, I think we can move these issues for the next milestone. The rationale is that they are not tied to Python 3.6 in particular and they also need a bit more work before getting integrated. |
I just released pylint==1.7.0 and astroid==1.5.0. Let me know if you encounter any problems. |
Thanks Claudiu! 🎉 |
Thanks to everyone that was involved in developing this release, great job! |
Yeah ! All of you have done a great job, thanks!
2017-04-13 17:52 GMT+02:00 Łukasz Rogalski <[email protected]>:
… Thanks to everyone that was involved in developing this release, great job!
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1072 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABxJDDDuNfm6E17U_iDMxfVOJ1bXk2C-ks5rvkTOgaJpZM4Jj5hk>
.
--
Sylvain
|
is this in the latest pylint on pip? Just curious, as if I try linting with vs code, I get a curious warning, |
@derekriemer yes, it's on pypi. You are either not running Python 3.6 or running older version of pylint / astroid. |
Check what we need to support 3.6 for Pylint 2.0:
The text was updated successfully, but these errors were encountered: