We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8713df7 commit 180a874Copy full SHA for 180a874
.circleci/config.yml
@@ -78,11 +78,14 @@ jobs:
78
key: v1-pyenv-{{ .Environment.CIRCLE_JOB }}-xcode-13.2.0
79
80
- when:
81
- # see https://github.com/pyenv/pyenv/issues/1643
+ # see https://github.com/pyenv/pyenv/issues/1643. We use an intermediate
82
+ # file so we can use the --skip-existing without raising errors from curl
83
condition:
84
equal: [3.6.8, << parameters.python-version >>]
85
steps:
- - run: pyenv install --patch 3.6.8 < <(curl -sSL https://github.com/python/cpython/commit/8ea6353.patch)
86
+ - run: |
87
+ curl -sSL https://github.com/python/cpython/commit/8ea6353.patch > tmp.txt
88
+ pyenv install -s --patch 3.6.8 < tmp.txt
89
90
- run:
91
name: Install python
0 commit comments