Removed unused stuff

This commit is contained in:
Loup-Garou911XD 2024-03-13 02:00:00 +05:30
parent 823739b508
commit e09acbe2d7
3 changed files with 4 additions and 6 deletions

View File

@ -4,7 +4,6 @@ on:
# Run on pushes and pull-requests
push:
pull_request:
jobs:
make_linux_x86_64_gui_debug_build:

View File

@ -24,7 +24,6 @@
# #
################################################################################
SPHINX_DIR = sphinx
# List targets in this Makefile and basic descriptions for them.
help:
@$(PCOMMAND) makefile_target_list Makefile

View File

@ -584,12 +584,12 @@ def install_pip_reqs() -> None:
pcommand.disallow_in_batch()
# Make sure pip itself is up to date first.
# subprocess.run(
# [PYTHON_BIN, '-m', 'pip', 'install', '--upgrade', 'pip'], check=True
# )
subprocess.run(
[PYTHON_BIN, '-m', 'pip', 'install', '--upgrade', 'pip'], check=True
)
subprocess.run(
[PYTHON_BIN, '-m', 'pip', 'install', '--upgrade', '--break-system-packages'] + get_pip_reqs(),
[PYTHON_BIN, '-m', 'pip', 'install', '--upgrade'] + get_pip_reqs(),
check=True,
)
print(f'{Clr.GRN}All pip requirements installed!{Clr.RST}')