-
Notifications
You must be signed in to change notification settings - Fork 208
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
Review usage of unicode_literals #189
Comments
I'm with hobarrera on this, I don't have a problem with unicode_literals and haven't seen them brake something yet. |
Click will warn if unicode literals are used: pallets/click@5f33770 |
I guess we'll have to obey than. |
turns out you were right all along :-o |
From PythonCharmers/python-future#22:
I don't agree with this. Python 2.7 is still quite popular, probably the default for > 50% of the users. While I don't really like how the code looks after these changes, I guess functionality is more important than aesthetics, so I won't argue on this further. :) |
This is only talking about Python 3 versions. |
I'm not a fan of the look either :( I'd love to drop python 2 support all along. |
+1 on this. Also getting rid of compat+six. However, we really need to know if it's possible for downstream packages to update to py3 (maybe the entire dependency tree is missing from many distributions?). We could open a separate issue and open this for discussion with downstream packagers and users. |
It's unlikely that Debian or some other LTS distros ship with 3.3+ as their Options:
On Thu, Nov 19, 2015 at 12:10:08PM -0800, Hugo Osvaldo Barrera wrote:
|
Debian seems to include python3.3 on stable+ (source):
Only oldstable seems to include python3 < 3.3 (it has 3.1, according to the above link). I really don't think we should limit ourselves because of Debian-oldstable. However, the issue is if all other dependencies are available (otherwise the burden of packaging+maintaining would fall on the current khal maintainer, most likely). Also: Does khal currently work with python3<3.3? |
Definetly doesn't, because of |
Also bug-wise it's not ideal to use 3.3, a lot of stuff got ironed out in later versions. |
See #187
The text was updated successfully, but these errors were encountered: