Skip to content

Commit cfb1f88

Browse files
author
Ayush Jha
committed
Move from python 3.9 to 3.11
1 parent 7e0b686 commit cfb1f88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,13 @@ jobs:
206206
- name: Set current Python version
207207
shell: bash
208208
run: |
209-
echo "3.9" > .python-version
209+
echo "3.11" > .python-version
210210
211211
- name: Set up Python ${{ matrix.python }} (amd64)
212212
if: matrix.target.id != 'linux-aarch64'
213213
uses: actions/setup-python@v1
214214
with:
215-
python-version: 3.9
215+
python-version: 3.11
216216

217217
- name: Set up Python ${{ matrix.python }} (aarch64)
218218
if: matrix.target.id == 'linux-aarch64'
@@ -222,7 +222,7 @@ jobs:
222222
export PATH="$HOME/.pyenv/bin:$PATH"
223223
eval "$(pyenv init -)"
224224
eval "$(pyenv virtualenv-init -)"
225-
pyenv install --list | grep '^ 3.9' | tail -n 1 | tr -d '[:space:]' > .python-version
225+
pyenv install --list | grep '^ 3.11' | tail -n 1 | tr -d '[:space:]' > .python-version
226226
pyenv install --skip-existing "$(cat .python-version)"
227227
228228
# Caching is disabled because it interferes with artifact creation

0 commit comments

Comments
 (0)