File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 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
@@ -520,7 +520,7 @@ print(openai.__version__)
520
520
521
521
## Requirements
522
522
523
- Python 3.7 or higher.
523
+ Python 3.8 or higher.
524
524
525
525
## Contributing
526
526
Original file line number Diff line number Diff line change @@ -16,11 +16,10 @@ dependencies = [
16
16
" sniffio" ,
17
17
" cached-property; python_version < '3.8'" ,
18
18
]
19
- requires-python = " >= 3.7.1 "
19
+ requires-python = " >= 3.8 "
20
20
classifiers = [
21
21
" Typing :: Typed" ,
22
22
" Intended Audience :: Developers" ,
23
- " Programming Language :: Python :: 3.7" ,
24
23
" Programming Language :: Python :: 3.8" ,
25
24
" Programming Language :: Python :: 3.9" ,
26
25
" Programming Language :: Python :: 3.10" ,
@@ -139,7 +138,7 @@ filterwarnings = [
139
138
# there are a couple of flags that are still disabled by
140
139
# default in strict mode as they are experimental and niche.
141
140
typeCheckingMode = " strict"
142
- pythonVersion = " 3.7 "
141
+ pythonVersion = " 3.8 "
143
142
144
143
exclude = [
145
144
" _dev" ,
You can’t perform that action at this time.
0 commit comments