Skip to content

Commit

Permalink
Require docker only on Linux systems
Browse files Browse the repository at this point in the history
There is a known issue with docker-py pywin32 dependency pinned to
version 227 (docker/docker-py#2835).

TN: V425-021
  • Loading branch information
pierretr committed Apr 28, 2022
1 parent 13edd7a commit 08f6951
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
install_requires=(
"boto3",
"botocore",
"docker",
# Only require docker for linux as there is a known dependency issue
# with pywin32 on windows
"docker; platform_system=='Linux'",
"pyyaml",
"troposphere",
"e3-core",
Expand Down

0 comments on commit 08f6951

Please sign in to comment.