unused dependency to urllib3
This commit is contained in:
@@ -11,7 +11,6 @@ PyInstaller.__main__.run([
|
|||||||
'--add-binary', 'icons' + os.pathsep + 'icons',
|
'--add-binary', 'icons' + os.pathsep + 'icons',
|
||||||
'--add-binary', 'locales' + os.pathsep + 'locales',
|
'--add-binary', 'locales' + os.pathsep + 'locales',
|
||||||
'--hidden-import=krowlog',
|
'--hidden-import=krowlog',
|
||||||
'--hidden-import=urllib3',
|
|
||||||
'--hidden-import=watchdog',
|
'--hidden-import=watchdog',
|
||||||
'--hidden-import=watchdog.observers',
|
'--hidden-import=watchdog.observers',
|
||||||
'--hidden-import=watchdog.version',
|
'--hidden-import=watchdog.version',
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
pip==22.3.1
|
pip==22.3.1
|
||||||
PySide6-Essentials==6.4.1
|
PySide6-Essentials==6.4.1
|
||||||
setuptools==65.6.3
|
setuptools==65.6.3
|
||||||
urllib3==1.26.13
|
|
||||||
watchdog==2.2.0
|
watchdog==2.2.0
|
||||||
pyinstaller==5.7.0
|
pyinstaller==5.7.0
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
import textwrap
|
import textwrap
|
||||||
|
|
||||||
import PySide6
|
import PySide6
|
||||||
import urllib3
|
|
||||||
from watchdog import version as watchdog_version
|
from watchdog import version as watchdog_version
|
||||||
from PySide6.QtCore import Qt
|
from PySide6.QtCore import Qt
|
||||||
from PySide6.QtGui import QFont
|
from PySide6.QtGui import QFont
|
||||||
@@ -72,12 +71,10 @@ class AboutDialog(QDialog):
|
|||||||
<ul>
|
<ul>
|
||||||
<li>PySide6-Essentials {pyside} (LGPL v3) - <a href="https://doc.qt.io/qtforpython-6/">https://doc.qt.io/qtforpython-6/</a></li>
|
<li>PySide6-Essentials {pyside} (LGPL v3) - <a href="https://doc.qt.io/qtforpython-6/">https://doc.qt.io/qtforpython-6/</a></li>
|
||||||
<li>Qt6 {qt} (LGPL v3) - <a href="https://code.qt.io/cgit/qt/qtbase.git/">https://code.qt.io/cgit/qt/qtbase.git/</a></li>
|
<li>Qt6 {qt} (LGPL v3) - <a href="https://code.qt.io/cgit/qt/qtbase.git/">https://code.qt.io/cgit/qt/qtbase.git/</a></li>
|
||||||
<li>urllib3 {urllib3} (MIT) - <a href="https://github.com/urllib3/urllib3">https://github.com/urllib3/urllib3</a></li>
|
|
||||||
<li>watchdog {watchdog} (Apache 2.0) - <a href="https://github.com/gorakhargosh/watchdog">https://github.com/gorakhargosh/watchdog</a></li>
|
<li>watchdog {watchdog} (Apache 2.0) - <a href="https://github.com/gorakhargosh/watchdog">https://github.com/gorakhargosh/watchdog</a></li>
|
||||||
</ul>""".format(
|
</ul>""".format(
|
||||||
pyside=PySide6.__version__,
|
pyside=PySide6.__version__,
|
||||||
qt=PySide6.QtCore.__version__,
|
qt=PySide6.QtCore.__version__,
|
||||||
urllib3=urllib3.__version__,
|
|
||||||
watchdog=watchdog_version.VERSION_STRING)
|
watchdog=watchdog_version.VERSION_STRING)
|
||||||
label = textwrap.dedent(dependencies)
|
label = textwrap.dedent(dependencies)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user