Skip to content

Commit 95fc0f8

Browse files
committed
setup.py: include requests Python package on Windows
1 parent 272eb79 commit 95fc0f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ def package_files(directory):
4242
'wxPython'])
4343

4444
if platform.system() == "Windows" and sys.version_info >= (3, 0):
45-
# on MacOS we can have a more complete requirements list
45+
# on Windows we can have a more complete requirements list
4646
requirements.extend(['prompt_toolkit'])
47+
requirements.append('requests')
4748
elif platform.system() == "Windows":
4849
requirements.extend(['pyreadline'])
4950

0 commit comments

Comments
 (0)