Skip to content

Commit 8b1c28e

Browse files
Merge pull request #174 from mindsdb/bump-openai-version
Bump openai version
2 parents bff0f39 + 22f72f2 commit 8b1c28e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
python-version: [3.7,3.8,3.9]
13+
python-version: ['3.8', '3.9', '3.10', '3.11']
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Python
4747
uses: actions/setup-python@v2
4848
with:
49-
python-version: '3.7'
49+
python-version: '3.9'
5050
- name: Install dependencies
5151
run: |
5252
python -m pip install --upgrade pip==20.2.4

.github/workflows/test_prs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
python-version: [3.7,3.8,3.9]
14+
python-version: ['3.8', '3.9', '3.10', '3.11']
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python ${{ matrix.python-version }}

mindsdb_sdk/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = 'mindsdb_sdk'
22
__package_name__ = 'mindsdb_sdk'
3-
__version__ = '3.2.0'
3+
__version__ = '3.3.0'
44
__description__ = "MindsDB Python SDK, provides an SDK to use a remote mindsdb instance"
55
__email__ = "[email protected]"
66
__author__ = 'MindsDB Inc'

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ pandas >= 1.3.5
33
mindsdb-sql-parser ~= 0.0.0
44
docstring-parser >= 0.7.3
55
tenacity >= 8.0.1
6-
openai >= 1.15.0
6+
openai == 1.55.3
77
sseclient-py >= 1.8.0
88
validators == 0.20.0

0 commit comments

Comments
 (0)