File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ ![ PyPI version] ( https://img.shields.io/pypi/v/openai.svg )] ( https://pypi.org/project/openai/ )
4
4
5
- The OpenAI Python library provides convenient access to the OpenAI REST API from any Python 3.7 +
5
+ The OpenAI Python library provides convenient access to the OpenAI REST API from any Python 3.8 +
6
6
application. The library includes type definitions for all request params and response fields,
7
7
and offers both synchronous and asynchronous clients powered by [ httpx] ( https://github.com/encode/httpx ) .
8
8
@@ -712,7 +712,7 @@ print(openai.__version__)
712
712
713
713
## Requirements
714
714
715
- Python 3.7 or higher.
715
+ Python 3.8 or higher.
716
716
717
717
## Contributing
718
718
Original file line number Diff line number Diff line change @@ -18,11 +18,10 @@ dependencies = [
18
18
" tqdm > 4" ,
19
19
" jiter>=0.4.0, <1" ,
20
20
]
21
- requires-python = " >= 3.7.1 "
21
+ requires-python = " >= 3.8 "
22
22
classifiers = [
23
23
" Typing :: Typed" ,
24
24
" Intended Audience :: Developers" ,
25
- " Programming Language :: Python :: 3.7" ,
26
25
" Programming Language :: Python :: 3.8" ,
27
26
" Programming Language :: Python :: 3.9" ,
28
27
" Programming Language :: Python :: 3.10" ,
@@ -150,7 +149,7 @@ filterwarnings = [
150
149
# there are a couple of flags that are still disabled by
151
150
# default in strict mode as they are experimental and niche.
152
151
typeCheckingMode = " strict"
153
- pythonVersion = " 3.7 "
152
+ pythonVersion = " 3.8 "
154
153
155
154
exclude = [
156
155
" _dev" ,
You can’t perform that action at this time.
0 commit comments