openai: 0.20.0 -> 0.22.0
This commit is contained in:
parent
c5550273e3
commit
9f49d4c4fc
1 changed files with 8 additions and 2 deletions
|
@ -4,10 +4,13 @@
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
|
||||||
# Python dependencies
|
# Python dependencies
|
||||||
|
, numpy
|
||||||
, openpyxl
|
, openpyxl
|
||||||
, pandas
|
, pandas
|
||||||
, pandas-stubs
|
, pandas-stubs
|
||||||
, requests
|
, requests
|
||||||
|
, scikit-learn
|
||||||
|
, tenacity
|
||||||
, tqdm
|
, tqdm
|
||||||
, wandb
|
, wandb
|
||||||
|
|
||||||
|
@ -18,7 +21,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "openai";
|
pname = "openai";
|
||||||
version = "0.20.0";
|
version = "0.22.0";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7.1";
|
disabled = pythonOlder "3.7.1";
|
||||||
|
|
||||||
|
@ -27,14 +30,17 @@ buildPythonPackage rec {
|
||||||
owner = "openai";
|
owner = "openai";
|
||||||
repo = "openai-python";
|
repo = "openai-python";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-kG7gsLAOoBCt7pxViO1Zhil2FGHigPEMJfBjdIp2th8=";
|
sha256 = "sha256-4FKFcUiY17hEiOGFP1fPBtcvcM19hFrHXX3ZLxgdJHI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
openpyxl
|
openpyxl
|
||||||
pandas
|
pandas
|
||||||
pandas-stubs
|
pandas-stubs
|
||||||
requests
|
requests
|
||||||
|
scikit-learn
|
||||||
|
tenacity
|
||||||
tqdm
|
tqdm
|
||||||
wandb
|
wandb
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue