Update paths after api_client move
This commit is contained in:
parent
d06c898bcf
commit
8fe0156d4f
|
@ -46,7 +46,7 @@ updates:
|
|||
- dependencies
|
||||
|
||||
- package-ecosystem: "pip"
|
||||
directory: "/python_apps/api_clients"
|
||||
directory: "/api_client"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
labels:
|
||||
|
|
|
@ -128,7 +128,7 @@ jobs:
|
|||
make -C api lint
|
||||
make -C analyzer lint
|
||||
make -C worker lint
|
||||
make -C python_apps/api_clients lint
|
||||
make -C api_client lint
|
||||
make -C python_apps/pypo lint
|
||||
|
||||
test:
|
||||
|
@ -136,7 +136,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
context: [analyzer, python_apps/api_clients]
|
||||
context: [analyzer, api_client]
|
||||
release: [bionic, buster]
|
||||
|
||||
container: ghcr.io/libretime/libretime-dev:${{ matrix.release }}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
all: lint test
|
||||
|
||||
include ../../tools/python.mk
|
||||
include ../tools/python.mk
|
||||
|
||||
PIP_INSTALL := --editable .
|
||||
PYLINT_ARG := api_clients tests
|
||||
|
|
2
install
2
install
|
@ -1019,7 +1019,7 @@ if [ ! -d /var/log/airtime ]; then
|
|||
fi
|
||||
|
||||
verbose "\n * Installing API client..."
|
||||
loudCmd "$pip_cmd install ${AIRTIMEROOT}/python_apps/api_clients"
|
||||
loudCmd "$pip_cmd install ${AIRTIMEROOT}/api_client"
|
||||
verbose "...Done"
|
||||
|
||||
verbose "\n * Installing pypo and liquidsoap..."
|
||||
|
|
|
@ -31,7 +31,7 @@ setup(
|
|||
],
|
||||
python_requires=">=3.6",
|
||||
install_requires=[
|
||||
f"libretime-api-client @ file://localhost/{here.parent}/api_clients#egg=libretime-api-client",
|
||||
f"libretime-api-client @ file://localhost/{here.parent}/api_client#egg=libretime-api-client",
|
||||
"amqplib",
|
||||
"configobj",
|
||||
"defusedxml",
|
||||
|
|
Loading…
Reference in New Issue