Skip to content

Commit cf9c04a

Browse files
authored
Add tqdm requirement (#15) (#9)
* Add `tqdm` requirement * Version bump
1 parent a57b587 commit cf9c04a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

openai/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.6.1"
1+
VERSION = "0.6.2"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
install_requires=[
1616
'requests >= 2.20; python_version >= "3.0"',
1717
'requests[security] >= 2.20; python_version < "3.0"',
18+
"tqdm", # Needed for progress bars
1819
],
1920
extras_require={"dev": ["black==20.8b1", "pytest==6.*"]},
2021
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",

0 commit comments

Comments
 (0)