Skip to content

Commit d9cf94d

Browse files
authored
Merge pull request #20 from StrongMonkey/update-2
Chore: update python 3.12 to fix syntax error
2 parents a8562a0 + 9116957 commit d9cf94d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.10"
16+
python-version: "3.12"
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

.github/workflows/run_tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ref: ${{ github.event.pull_request.head.sha }}
2121
- uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.12"
2424
- name: Install gptscript
2525
run: |
2626
curl https://get.gptscript.ai/releases/default_linux_amd64_v1/gptscript -o gptscriptexe
@@ -43,7 +43,7 @@ jobs:
4343
ref: ${{ github.event.pull_request.head.sha }}
4444
- uses: actions/setup-python@v5
4545
with:
46-
python-version: "3.10"
46+
python-version: "3.12"
4747
- name: Install gptscript
4848
run: |
4949
curl https://get.gptscript.ai/releases/default_windows_amd64_v1/gptscript.exe -o gptscript.exe

scripts/package

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ from tempfile import TemporaryDirectory
1717
gptscript_info = {
1818
"name": "gptscript",
1919
"url": "https://github.com/gptscript-ai/gptscript/releases/download/",
20-
"version": "v0.5.0",
20+
"version": "v0.7.1",
2121
}
2222

2323
# Define platform-specific variables

0 commit comments

Comments
 (0)