File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Test Release
33on :
44 pull_request :
55 branches :
6- - main
6+ - master
77 workflow_call :
88
99jobs :
@@ -12,16 +12,17 @@ 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
25+ python -m pip install -e .
2526
2627 - name : Run tests
2728 run : python -m pytest test/model_unit_test.py
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 1+ 3.10.0
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ authors = [
66]
77description = " OOAK: Object Oriented Agent Kit"
88readme = " README.md"
9- requires-python = " >=3.9 "
9+ requires-python = " >=3.10 "
1010dependencies = [
1111 " python-dotenv" ,
1212 " openai" ,
13- " openai-agents" ,
13+ " openai-agents==0.2.6 " ,
1414]
1515classifiers = [
1616 " Programming Language :: Python :: 3" ,
Original file line number Diff line number Diff line change 1- dotenv
1+ python- dotenv
22openai
3- openai-agents
4- circle-ooak
3+ openai-agents == 0.2.6
You can’t perform that action at this time.
0 commit comments