diff options
author | 2019-10-06 11:34:44 +0100 | |
---|---|---|
committer | 2019-10-06 11:34:44 +0100 | |
commit | d87226479a53708d6fdb5d39a8e87b12b10e065e (patch) | |
tree | 2a189af7bc5445371253a91a317a8f698aad821d /Pipfile | |
parent | Merge pull request #275 from python-discord/flake8-exclude-fix (diff) |
disable usage of pyuwsgi on windows due to incompatibility, library is only used in production anyway
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ pygments = "~=2.3.1" #wiki = {git = "https://github.com/python-discord/django-wiki.git"} wiki = {path = "./docker/wheels/wiki-0.5.dev20190420204942-py3-none-any.whl"} pyyaml = "~=5.1" -pyuwsgi = "~=2.0" +pyuwsgi = {version = "~=2.0", sys_platform = "!='win32'"} [dev-packages] coverage = "~=4.5.3" |