Message 310416 - Python tracker

Message310416

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2018-01-22.10:56:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516618613.48.0.467229070634.issue32620@psf.upfronthosting.co.za>
In-reply-to
Content
My workaround for bpo-31568 is causing new issues on Python 3.5.

Output:
---
0.03s$ pyenv global system 3.5
pyenv: version `3.5' not installed
---

Extract of Python 3.5 .travis.yml:
---
      before_install:
        # work around https://github.com/travis-ci/travis-ci/issues/8363
        - pyenv global system 3.5
---

=> https://github.com/travis-ci/travis-ci/issues/8363

This workaround was added by me:
---
commit 70c630a7316f9f6063557786442e3c56502fe8ea
Author: Victor Stinner <victor.stinner@gmail.com>
Date:   Sun Sep 24 15:45:00 2017 -0700

    bpo-31568, Travis CI: Fix python3.5 (#3737)
    
    Works around Travis CI bug about the python3.5 binary:
    https://github.com/travis-ci/travis-ci/issues/8363
---

Without the workaround, running "python3.5" on Travis CI failed with "pyenv: python3.5: command not found".

Extract of Larry Hastings's email:
---

I have three PRs for Python 3.5.5rc1:

    https://github.com/python/cpython/pull/4656
    https://github.com/python/cpython/pull/5197
    https://github.com/python/cpython/pull/5201

I can't merge them because Travis CI is unhappy.  All three CI tests fail in the same way, reporting this error:

    The command "pyenv global system 3.5" failed and exited with 1 during .
---
https://mail.python.org/pipermail/python-committers/2018-January/005135.html
History
Date User Action Args
2018-01-22 10:56:53vstinnersetrecipients: + vstinner
2018-01-22 10:56:53vstinnersetmessageid: <1516618613.48.0.467229070634.issue32620@psf.upfronthosting.co.za>
2018-01-22 10:56:53vstinnerlinkissue32620 messages
2018-01-22 10:56:53vstinnercreate