Closed sils closed 8 years ago
Hi, the update should be there. It's version 0.2. I need to update the readme to specify that 3.5 is supported. But the package metadata already says so.
Did you grab the latest pypi version and checked the code is different than the one in github? Let me know. I will be on mobile only until next Monday. On Jan 6, 2016 11:59 AM, "Lasse Schuirmann" notifications@github.com wrote:
I'd be awesomely delighted by a timely release since the current one doesn't work with Python 3.5 but you apparently fixed that :)
Cheers!
— Reply to this email directly or view it on GitHub https://github.com/sk-/html-linter/issues/5.
Something's definitely weird here:
lasse@lssteady ~/prog/website (git)-[gh-pages] % sudo pip3 install html_linter --upgrade
Requirement already up-to-date: html-linter in /usr/lib/python3.5/site-packages
Requirement already up-to-date: template-remover in /usr/lib/python3.5/site-packages (from html-linter)
Requirement already up-to-date: docopt>=0.6.1 in /usr/lib/python3.5/site-packages (from html-linter)
lasse@lssteady ~/prog/website (git)-[gh-pages] % html_lint.py --version
html5_lint v0.1.8
lasse@lssteady ~/prog/website (git)-[gh-pages] % sudo pip3 uninstall html_linter
Uninstalling html-linter-0.1.9:
/usr/bin/html_lint.py
/usr/lib/python3.5/site-packages/__pycache__/html_linter.cpython-35.pyc
/usr/lib/python3.5/site-packages/html_linter-0.1.9-py3.5.egg-info
/usr/lib/python3.5/site-packages/html_linter.py
Proceed (y/n)? y
Successfully uninstalled html-linter-0.1.9
lasse@lssteady ~/prog/website (git)-[gh-pages] % sudo pip3 install html_linter
Collecting html-linter
Using cached html-linter-0.1.9.tar.gz
Requirement already satisfied (use --upgrade to upgrade): template-remover in /usr/lib/python3.5/site-packages (from html-linter)
Requirement already satisfied (use --upgrade to upgrade): docopt>=0.6.1 in /usr/lib/python3.5/site-packages (from html-linter)
Building wheels for collected packages: html-linter
Running setup.py bdist_wheel for html-linter
Stored in directory: /root/.cache/pip/wheels/2f/7f/8f/77a7e30ff938b21167048bb6d1c49aeb16c2108a0790833a73
Successfully built html-linter
Installing collected packages: html-linter
Successfully installed html-linter-0.1.9
lasse@lssteady ~/prog/website (git)-[gh-pages] % html_lint.py --version
html5_lint v0.1.8
lasse@lssteady ~/prog/website (git)-[gh-pages] %
See the strange version numbers? If I browse PyPI, the latest version seems to be 0.2, pip thinks I have 0.1.9 and the --version
flag gives 0.1.8.
I'll second @sils1297, something seems wrong with the release:
$ pip install html-linter
Collecting html-linter
Collecting docopt>=0.6.1 (from html-linter)
Collecting template-remover (from html-linter)
Installing collected packages: docopt, template-remover, html-linter
Successfully installed docopt-0.6.2 html-linter-0.1.9 template-remover-0.1.9
$ html_lint.py --version
html5_lint v0.1.8
$ pip freeze | grep html-linter
html-linter==0.1.9
$ pip install html-linter==0.2.0
Collecting html-linter==0.2.0
Could not find a version that satisfies the requirement html-linter==0.2.0 (from versions: 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.1.9)
No matching distribution found for html-linter==0.2.0
A bit weird though, because https://pypi.python.org/pypi/html-linter/0.2.0 exists, but there is no link to the version on https://pypi.python.org/simple/html-linter/
Now, the version 0.3 is released. I check and it appears on https://pypi.python.org/simple/html-linter/. Let me know if you ran into any other issues. Closing it for now.
I'd be awesomely delighted by a timely release since the current one doesn't work with Python 3.5 but you apparently fixed that :)
Cheers!