update version of openai dependency (#588)

This commit is contained in:
Chi Wang
2023-11-07 13:29:04 -08:00
committed by GitHub
parent b41b366549
commit 65ec0b19de
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
__version__ = "0.2.0b2"
__version__ = "0.2.0b3"

View File

@@ -14,7 +14,7 @@ with open(os.path.join(here, "autogen/version.py")) as fp:
__version__ = version["__version__"]
install_requires = [
"openai==1.0.0b3",
"openai==1.1.1",
"diskcache",
"termcolor",
"flaml",
@@ -58,5 +58,5 @@ setuptools.setup(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
python_requires=">=3.8, <3.12",
)