mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-04 22:43:17 +08:00
Removed unused stuff
This commit is contained in:
parent
823739b508
commit
e09acbe2d7
1
.github/workflows/cd.yml
vendored
1
.github/workflows/cd.yml
vendored
@ -4,7 +4,6 @@ on:
|
|||||||
# Run on pushes and pull-requests
|
# Run on pushes and pull-requests
|
||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
make_linux_x86_64_gui_debug_build:
|
make_linux_x86_64_gui_debug_build:
|
||||||
|
|||||||
1
Makefile
1
Makefile
@ -24,7 +24,6 @@
|
|||||||
# #
|
# #
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
SPHINX_DIR = sphinx
|
|
||||||
# List targets in this Makefile and basic descriptions for them.
|
# List targets in this Makefile and basic descriptions for them.
|
||||||
help:
|
help:
|
||||||
@$(PCOMMAND) makefile_target_list Makefile
|
@$(PCOMMAND) makefile_target_list Makefile
|
||||||
|
|||||||
@ -584,12 +584,12 @@ def install_pip_reqs() -> None:
|
|||||||
pcommand.disallow_in_batch()
|
pcommand.disallow_in_batch()
|
||||||
|
|
||||||
# Make sure pip itself is up to date first.
|
# Make sure pip itself is up to date first.
|
||||||
# subprocess.run(
|
subprocess.run(
|
||||||
# [PYTHON_BIN, '-m', 'pip', 'install', '--upgrade', 'pip'], check=True
|
[PYTHON_BIN, '-m', 'pip', 'install', '--upgrade', 'pip'], check=True
|
||||||
# )
|
)
|
||||||
|
|
||||||
subprocess.run(
|
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,
|
check=True,
|
||||||
)
|
)
|
||||||
print(f'{Clr.GRN}All pip requirements installed!{Clr.RST}')
|
print(f'{Clr.GRN}All pip requirements installed!{Clr.RST}')
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user