2019-06-05 07:14:07 +00:00
|
|
|
From 736a0ca9fd2ee3f74ebdef187c5616288cc70351 Mon Sep 17 00:00:00 2001
|
2019-05-07 15:13:12 +00:00
|
|
|
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
|
|
|
Date: Thu, 20 Dec 2018 12:46:25 +0100
|
2019-05-17 11:24:33 +00:00
|
|
|
Subject: [PATCH 7/7] 00316: Mark bdist_wininst unsupported
|
2019-05-07 15:13:12 +00:00
|
|
|
|
|
|
|
We remove the exe files from distutil's bdist_wininst.
|
|
|
|
So we mark the command as unsupported - and the tests are skipped.
|
|
|
|
---
|
|
|
|
Lib/distutils/command/bdist_wininst.py | 2 ++
|
|
|
|
1 file changed, 2 insertions(+)
|
|
|
|
|
2018-12-20 11:46:25 +00:00
|
|
|
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
|
2019-05-07 15:13:12 +00:00
|
|
|
index 3a616883be..ba299a4028 100644
|
2018-12-20 11:46:25 +00:00
|
|
|
--- a/Lib/distutils/command/bdist_wininst.py
|
|
|
|
+++ b/Lib/distutils/command/bdist_wininst.py
|
|
|
|
@@ -12,6 +12,8 @@ from distutils.sysconfig import get_python_version
|
|
|
|
from distutils import log
|
|
|
|
|
|
|
|
class bdist_wininst(Command):
|
|
|
|
+ # Marker for tests that we have the unsupported bdist_wininst
|
|
|
|
+ _unsupported = True
|
|
|
|
|
|
|
|
description = "create an executable installer for MS Windows"
|
|
|
|
|
2019-05-07 15:13:12 +00:00
|
|
|
--
|
|
|
|
2.21.0
|
|
|
|
|