diff --git a/openai/version.py b/openai/version.py index 68c325024b..cbc6a7bea5 100644 --- a/openai/version.py +++ b/openai/version.py @@ -1 +1 @@ -VERSION = "0.23.0" +VERSION = "0.23.1" diff --git a/setup.py b/setup.py index 03bd6c3b6a..0b6956ef0e 100644 --- a/setup.py +++ b/setup.py @@ -24,9 +24,13 @@ ], extras_require={ "dev": ["black~=21.6b0", "pytest==6.*"], + "wandb": ["wandb"], "embeddings": [ - "scikit-learn>=1.0.2", # Needed for embedding utils, versions >= 1.1 require python 3.8 - "tenacity>=8.0.1" + "scikit-learn>=1.0.2", # Needed for embedding utils, versions >= 1.1 require python 3.8 + "tenacity>=8.0.1", + "matplotlib", + "sklearn", + "plotly", ], }, python_requires=">=3.7.1",