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