Skip to content

Commit a060e30

Browse files
committed
chore(TECHOPS-18898): fix default branch for ci
1 parent 6349afd commit a060e30

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- name: Set up Python 3.9
15+
- name: Set up Python 3.10
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.9
18+
python-version: '3.10'
1919

2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
2323
python -m pip install -r requirements.txt
24-
python -m pip install pytest
24+
python -m pip install pytest pytest-asyncio
2525
2626
- name: Run tests
2727
run: python -m pytest test/model_unit_test.py

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.9'
23+
python-version: '3.10'
2424

2525
- name: Install build dependencies
2626
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
]
77
description = "OOAK: Object Oriented Agent Kit"
88
readme = "README.md"
9-
requires-python = ">=3.9"
9+
requires-python = ">=3.10"
1010
dependencies = [
1111
"python-dotenv",
1212
"openai",

0 commit comments

Comments
 (0)