Skip to content

Commit

Permalink
.circleci: make sure to update pyenv before installing Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Stanković committed Mar 27, 2023
1 parent 20af190 commit aa5a15d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .circleci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ jobs:
- restore-python
- restore-python-packages

# make sure pyenv is up to date and able to install our Python version
- run: |
cd $PYENV_ROOT
git fetch --tags
git checkout $(git tag --sort=-committerdate |head -n1)
- run: pyenv install --skip-existing 3.10.10
- run: pyenv global 3.10.10
- run: pip install -U pip
Expand Down

0 comments on commit aa5a15d

Please sign in to comment.