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
I've verified and I assure that I'm running youtube-dl 2016.06.11.3
Before submitting an issue make sure you have:
At least skimmed through README and most notablyFAQ and BUGS sections
Searched the bugtracker for similar issues including closed ones
What is the purpose of your issue?
Bug report (encountered problems with youtube-dl)
Site support request (request for adding support for a new site)
Feature request (request for a new functionality)
Question
Other
The latest pip has dropped Python 3.2 support (pypa/pip#3156) . As a result, I can't install pip:
$ python3.2 ~/tmp/get-pip.py --user
/tmp/tmpyhlooe/pip.zip/pip/_vendor/pkg_resources/__init__.py:80: UserWarning: Support for Python 3.0-3.2 has been dropped. Future versions will fail here.
Traceback (most recent call last):
File "/home/yen/tmp/get-pip.py", line 19177, in <module>
main()
File "/home/yen/tmp/get-pip.py", line 194, in main
bootstrap(tmpdir=tmpdir)
File "/home/yen/tmp/get-pip.py", line 82, in bootstrap
import pip
File "/tmp/tmpyhlooe/pip.zip/pip/__init__.py", line 16, in <module>
File "/tmp/tmpyhlooe/pip.zip/pip/vcs/mercurial.py", line 9, in <module>
File "/tmp/tmpyhlooe/pip.zip/pip/download.py", line 36, in <module>
File "/tmp/tmpyhlooe/pip.zip/pip/utils/ui.py", line 15, in <module>
File "/tmp/tmpyhlooe/pip.zip/pip/_vendor/progress/bar.py", line 48
empty_fill = u'∙'
^
SyntaxError: invalid syntax
Reasons for dropping:
According to dstufft, requests by Python 3.2 clients account for less than 0.5% traffic on pypi.org
Although Ubuntu 12.04 LTS (EOL on April 2017) still ships Python 3.2, users can use Python 2.7
A last bit: re on Python 3.2 is broken.
$ python3.2 test/test_all_urls.py
..F.............
======================================================================
FAIL: test_no_duplicates (__main__.TestAllURLsMatching)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/test_all_urls.py", line 93, in test_no_duplicates
self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url))
AssertionError: False is not true : UnicodeBOMIE should match URL '\ufeffhttp://www.youtube.com/watch?v=BaW_jenozKc'
----------------------------------------------------------------------
Ran 16 tests in 1.708s
FAILED (failures=1)
$ python3.2
Python 3.2.6 (default, May 23 2016, 01:08:02)
[GCC 6.1.1 20160501] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> re.match(r'\ufeff', '\ufeff')
>>>
Before submitting an issue make sure you have:
What is the purpose of your issue?
The latest pip has dropped Python 3.2 support (pypa/pip#3156) . As a result, I can't install pip:
Reasons for dropping:
A last bit: re on Python 3.2 is broken.
UPDATE 2018/01/25:
Blackberry 10 ships Python 3.2 and no 2.x, so 3.2 support should be kept until Blackberry 10 is dropped.
Ref: https://appworld.blackberry.com/webstore/content/32880889
The text was updated successfully, but these errors were encountered: