-
Notifications
You must be signed in to change notification settings - Fork 4
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
ENH: Python3 support #7
Comments
|
* hotfix/0.3.13: BUG,TST: pyline/pyline.py: console_entrypoint -> pyline.pyline:main_entrypoint (see: #7)
RLS: pyline v0.3.13 * tag 'v0.3.13': BUG,TST: pyline/pyline.py: console_entrypoint -> pyline.pyline:main_entrypoint (see: #7)
* hotfix/0.3.16: DOC: HISTORY.rst: git-changelog.py RLS: pyline v0.3.16 BUG: pyline.py: sys.argv[1:] (#7)
RLS: pyline v0.3.16 * tag 'v0.3.16': DOC: HISTORY.rst: git-changelog.py RLS: pyline v0.3.16 BUG: pyline.py: sys.argv[1:] (#7)
This hasnt been released to PyPI, which is stuck on v0.3.16 while v0.3.17 has been tagged in the repo |
This is blocking getting a pyline with Python 3 support uploaded to PyPi:
|
Solution for now: ~ transform sorted([None, "b", "c"]) -> sorted(["", "b", "c"])
sorted([None, 1, "c"]) -> sorted(["", 1, "c"]) # which still errors; but shouldn't happen without a strange type cast function |
I just released pyline v0.3.20 with Python 3 support to PyPI: https://pypi.org/project/pyline/ |
https://github.com/westurner/pyline/blob/master/travis.yml
https://github.com/westurner/pyline/blob/master/tox.ini
The text was updated successfully, but these errors were encountered: