scripts/install-dependencies.py

branch
eric7-maintenance
changeset 10460
3b34efa2857c
parent 10439
21c28b0f9e41
child 10679
4d3e0ce54322
equal deleted inserted replaced
10366:411df92e881f 10460:3b34efa2857c
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 # Copyright (c) 2022 - 2023 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2022 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 # This script installs all packages eric depends on. 6 # This script installs all packages eric depends on.
7 7
8 """ 8 """
9 Installation script for the eric IDE dependencies. 9 Installation script for the eric IDE dependencies.
16 16
17 def exit(rcode=0): 17 def exit(rcode=0):
18 """ 18 """
19 Exit the install script. 19 Exit the install script.
20 20
21 @param rcode result code to report back (integer) 21 @param rcode result code to report back
22 @type int
22 """ 23 """
23 print() 24 print()
24 25
25 if sys.platform.startswith(("win", "cygwin")): 26 if sys.platform.startswith(("win", "cygwin")):
26 with contextlib.suppress(EOFError): 27 with contextlib.suppress(EOFError):

eric ide

mercurial