Skip to content

Commit

Permalink
Update packacge mangers to install new python version
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlBeek committed Feb 23, 2024
1 parent 5ec115e commit 0afa84a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- checkout
- run:
name: "Install Python"
command: choco install python --version=3.12.2
command: choco install python --version=3.12.2 -y
- run:
name: Install testing requirements on Windows
command: python -m pip install -r requirements_test.txt
Expand All @@ -105,6 +105,7 @@ jobs:
- run:
name: Install building requirements on Linux
command: |
pyenv update
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install -f 3.12.2;
pyenv global 3.12.2;
pip install -r ./build_configs/linux/requirements.txt;
Expand Down Expand Up @@ -153,6 +154,7 @@ jobs:
- run:
name: Install building requirements on Linux ARM64
command: |
pyenv update
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install -f 3.12.2;
pyenv global 3.12.2;
pip install -r ./build_configs/linux/requirements.txt;
Expand Down Expand Up @@ -198,7 +200,7 @@ jobs:
- checkout
- run:
name: "Install Python"
command: choco install python --version=3.12.3
command: choco install python --version=3.12.2 -y
- run:
name: Install building requirements on Windows
command: pip install -r ./build_configs/windows/requirements.txt
Expand Down

0 comments on commit 0afa84a

Please sign in to comment.