Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit b2c94c1

Browse files
authored
chore: 3.10 -> 3.11 (#34)
# What does this PR do? context: llamastack/llama-stack#2469 ## Test Plan
1 parent 450b04c commit b2c94c1

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

actions/publish-dockers/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ runs:
2222
steps:
2323
- uses: actions/setup-python@v5
2424
with:
25-
python-version: '3.10'
25+
python-version: '3.11'
2626
- uses: astral-sh/setup-uv@v6
2727
with:
28-
python-version: '3.10'
28+
python-version: '3.11'
2929
enable-cache: false
3030

3131
- uses: docker/setup-buildx-action@v3

actions/publish-dockers/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333
set -x
3434
TMPDIR=$(mktemp -d)
3535
cd $TMPDIR
36-
uv venv -p python3.10
36+
uv venv -p python3.11
3737
source .venv/bin/activate
3838

3939
uv pip install --index-url https://test.pypi.org/simple/ \

actions/release-final-package/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ runs:
2323
steps:
2424
- uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.10'
26+
python-version: '3.11'
2727
- uses: astral-sh/setup-uv@v6
2828
with:
29-
python-version: '3.10'
29+
python-version: '3.11'
3030
enable-cache: false
3131
- uses: actions/setup-node@v3
3232
with:

actions/release-final-package/main.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ add_bump_version_commit() {
122122

123123
TMPDIR=$(mktemp -d)
124124
cd $TMPDIR
125-
uv venv -p python3.10 build-env
125+
uv venv -p python3.11 build-env
126126
source build-env/bin/activate
127127

128128
uv pip install twine
@@ -188,7 +188,7 @@ rm -rf build-env
188188
for repo in "${REPOS[@]}"; do
189189
cd $TMPDIR
190190
if [ "$repo" != "stack-client-typescript" ]; then
191-
uv venv -p python3.10 repo-$repo-env
191+
uv venv -p python3.11 repo-$repo-env
192192
source repo-$repo-env/bin/activate
193193
fi
194194

actions/test-and-cut/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ runs:
4242
steps:
4343
- uses: actions/setup-python@v5
4444
with:
45-
python-version: '3.10'
45+
python-version: '3.11'
4646
- uses: astral-sh/setup-uv@v6
4747
with:
48-
python-version: '3.10'
48+
python-version: '3.11'
4949
enable-cache: false
5050

5151
- name: Set up Docker Buildx

actions/test-and-cut/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ is_truthy() {
3838
TMPDIR=$(mktemp -d)
3939
cd $TMPDIR
4040

41-
uv venv -p python3.10
41+
uv venv -p python3.11
4242
source .venv/bin/activate
4343

4444
build_packages() {

actions/test-published-package/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ runs:
2323
steps:
2424
- uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.10'
26+
python-version: '3.11'
2727
- uses: astral-sh/setup-uv@v6
2828
with:
29-
python-version: '3.10'
29+
python-version: '3.11'
3030
enable-cache: false
3131
- name: Install dependencies
3232
shell: bash

actions/test-published-package/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ fi
1818
TMPDIR=$(mktemp -d)
1919
cd $TMPDIR
2020

21-
uv venv -p python3.10
21+
uv venv -p python3.11
2222
source .venv/bin/activate
2323

2424
max_attempts=6

actions/upload-packages-and-tag/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ runs:
1919
steps:
2020
- uses: actions/setup-python@v5
2121
with:
22-
python-version: '3.10'
22+
python-version: '3.11'
2323
- uses: astral-sh/setup-uv@v6
2424
with:
25-
python-version: '3.10'
25+
python-version: '3.11'
2626
enable-cache: false
2727
- uses: actions/setup-node@v3
2828
with:

actions/upload-packages-and-tag/main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ is_truthy() {
3131
TMPDIR=$(mktemp -d)
3232
cd $TMPDIR
3333

34-
uv venv -p python3.10
34+
uv venv -p python3.11
3535
source .venv/bin/activate
3636

3737
uv pip install twine

0 commit comments

Comments
 (0)