aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/deployment-pyinstaller.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/doc/deployment-pyinstaller.rst')
-rw-r--r--sources/pyside2/doc/deployment-pyinstaller.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/sources/pyside2/doc/deployment-pyinstaller.rst b/sources/pyside2/doc/deployment-pyinstaller.rst
index d58ec2d7d..3bc8c6996 100644
--- a/sources/pyside2/doc/deployment-pyinstaller.rst
+++ b/sources/pyside2/doc/deployment-pyinstaller.rst
@@ -126,19 +126,6 @@ If you're working with different versions, this can result in frustrating debugg
when you think you are testing the latest version, but `PyInstaller` is working with an older
version.
-Issue with numpy in Python 2.7.16
----------------------------------
-
-A recent issue with PyInstaller is the appearance of Python 2.7.16. This Python version creates
-an issue that is known from Python 3 as a `Tcl/Tk` problem. This rarely shows up in Python 3
-because `Tcl/Tk` is seldom used with `PyInstaller`.
-
-On Python 2.7.16, this problem is common, as many developers use numpy. For some reason,
-installing `numpy` creates a dependency to `Tcl/Tk`, which can be circumvented only by explicitly
-excluding `Tcl/Tk` by adding this line to spec-file's analysis section::
-
- excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
-
Safety Instructions
-------------------