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.

classification
Title: [3.6] make regen-all fails on Travis CI on "python3.6" command
Type: Stage: resolved
Components: Build Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, vstinner, zach.ware
Priority: normal Keywords: patch

Created on 2017-12-13 22:32 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 4853 merged vstinner, 2017-12-13 22:40
Messages (2)
msg308262 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-12-13 22:32
The cpython job of Travis CI compiles Python with clang and then run "make regen-all" which fails.

"make regen-all" fails for example on regen-typeslots which runs "$(PYTHON_FOR_REGEN) ...". On Travis CI, $(PYTHON_FOR_REGEN) is "python3.6", but running python3.6 fails with:

"""
The `python3.6' command exists in these Python versions:
  3.6
  3.6.3
"""

Example of failed build:
https://travis-ci.org/python/cpython/jobs/315978517
msg308268 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2017-12-13 23:51
New changeset 1d2a387b9526ef5f4d694734d8022e739f7fd410 by Victor Stinner in branch '3.6':
bpo-32316: Travis CI: use PYTHON_FOR_REGEN=python3 (#4853)
https://github.com/python/cpython/commit/1d2a387b9526ef5f4d694734d8022e739f7fd410
History
Date User Action Args
2022-04-11 14:58:55adminsetgithub: 76497
2017-12-13 23:52:31vstinnersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2017-12-13 23:51:52vstinnersetmessages: + msg308268
2017-12-13 22:40:59vstinnersetkeywords: + patch
stage: patch review
pull_requests: + pull_request4742
2017-12-13 22:32:34vstinnercreate