diff contrib/packaging/hgpackaging/inno.py @ 45752:d270b9b797a7 stable

contrib: split Windows requirements into multiple files Package support for Python 2 has diverged significantly. It is no longer trivial to maintain a single requirements file that supports both Python 2 and 3 because the set of packages and versions varies wildly. This commit split up the Windows requirements files so we have variants for Python 2 and 3. As part of this, I also renamed the files to have what I believe to be more reasonable naming ("win32" felt like a weird identifier to me). We can see that some package versions decreated on 2.7. This is because the old pinned versions weren't compatible with Python 2.
author Gregory Szorc <gregory.szorc@gmail.com>
date Wed, 21 Oct 2020 21:53:19 -0700
parents 9ade217b550d
children 89a2afe31e82
line wrap: on
line diff
--- a/contrib/packaging/hgpackaging/inno.py	Sat Oct 17 13:06:18 2020 +0900
+++ b/contrib/packaging/hgpackaging/inno.py	Wed Oct 21 21:53:19 2020 -0700
@@ -66,7 +66,7 @@
     staging_dir = inno_build_dir / 'stage'
 
     requirements_txt = (
-        source_dir / 'contrib' / 'packaging' / 'requirements_win32.txt'
+        source_dir / 'contrib' / 'packaging' / 'requirements-windows-py2.txt'
     )
 
     inno_build_dir.mkdir(parents=True, exist_ok=True)