diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 80a84b71..9c83bc84 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -4,7 +4,6 @@ on: # Run on pushes and pull-requests push: pull_request: - jobs: make_linux_x86_64_gui_debug_build: diff --git a/Makefile b/Makefile index 1f31ab07..e43ffd49 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,6 @@ # # ################################################################################ -SPHINX_DIR = sphinx # List targets in this Makefile and basic descriptions for them. help: @$(PCOMMAND) makefile_target_list Makefile diff --git a/tools/batools/pcommands.py b/tools/batools/pcommands.py index 99fc72f1..b2bbc806 100644 --- a/tools/batools/pcommands.py +++ b/tools/batools/pcommands.py @@ -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}')