2022-11-02T20:19:58 openai 0.20.0 -> 0.24.0 https://pypi.org/project/openai/ 2022-11-02T20:20:00 attrpath: openai 2022-11-02T20:20:01 Checking auto update branch... 2022-11-02T20:20:01 No auto update branch exists 2022-11-02T20:20:01 Old version 0.20.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , matplotlib , numpy , openpyxl , pandas , pandas-stubs , plotly , pytest-mock , pytestCheckHook , pythonOlder , requests , scikit-learn , tenacity , tqdm , typing-extensions , wandb }: buildPythonPackage rec { pname = "openai"; version = "0.24.0"; format = "setuptools"; disabled = pythonOlder "3.7.1"; src = fetchFromGitHub { owner = "openai"; repo = "openai-python"; rev = "v${version}"; hash = "sha256-0bXJoEq8FHRNaFMjncIwDbJROtFz/IJ4gD+LfvmtFUg="; }; propagatedBuildInputs = [ numpy openpyxl pandas pandas-stubs requests tqdm typing-extensions ]; passthru.optional-dependencies = { wandb = [ wandb ]; embeddings = [ matplotlib plotly scikit-learn tenacity ]; }; pythonImportsCheck = [ "openai" ]; checkInputs = [ pytestCheckHook pytest-mock ]; pytestFlagsArray = [ "openai/tests" ]; OPENAI_API_KEY = "sk-foo"; disabledTestPaths = [ # Requires a real API key "openai/tests/test_endpoints.py" # openai: command not found "openai/tests/test_file_cli.py" "openai/tests/test_long_examples_validator.py" ]; meta = with lib; { description = "Python client library for the OpenAI API"; homepage = "https://github.com/openai/openai-python"; license = licenses.mit; maintainers = with maintainers; [ malo ]; }; }