Skip to content

Commit

Permalink
Fix pywin32 dep, widen range to >=227,<400
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Mahlik <j38999128+jmahlik@users.noreply.github.com>
  • Loading branch information
Justin Mahlik committed Jun 10, 2021
1 parent 96c1272 commit 3cc18c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ paramiko==2.4.2
pycparser==2.17
pyOpenSSL==18.0.0
pyparsing==2.2.0
pywin32==227; sys_platform == 'win32'
pywin32>=227,<400; sys_platform == 'win32'
requests==2.20.0
urllib3==1.24.3
websocket-client==0.56.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

extras_require = {
# win32 APIs if on Windows (required for npipe support)
':sys_platform == "win32"': 'pywin32==227',
':sys_platform == "win32"': 'pywin32>=227,<400',

# If using docker-py over TLS, highly recommend this option is
# pip-installed or pinned.
Expand Down

0 comments on commit 3cc18c9

Please sign in to comment.