From 05edde9a64986375d4c8d97ae8caa16cba3f2cb8 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 30 Mar 2018 11:46:15 -0700 Subject: [PATCH] setup.py: unpin pypiwin32, should be fixed by now At the time we pinned this to v219, I think the v220 on PyPI was broken for py2.7, or they'd stopped producing newer wheels for py2 but the most recent py2-capable one was broken. The upstream bug is fixed, so I'll unpin this and see if it works. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5495d90c1..a97f31dd4 100644 --- a/setup.py +++ b/setup.py @@ -254,9 +254,7 @@ setup(name="tahoe-lafs", # also set in __init__.py python_requires="<3.0", install_requires=install_requires, extras_require={ - # this pinning is temporary until an upstream issue is fixed: - # https://github.com/mhammond/pywin32/issues/1151 - ':sys_platform=="win32"': ["pypiwin32==219"], + ':sys_platform=="win32"': ["pypiwin32"], "test": [ "pyflakes", "coverage",