Update paths after api_client move

This commit is contained in:
jo 2021-10-17 02:49:52 +02:00 committed by Kyle Robbertze
parent d06c898bcf
commit 8fe0156d4f
5 changed files with 6 additions and 6 deletions

View File

@ -46,7 +46,7 @@ updates:
- dependencies
- package-ecosystem: "pip"
directory: "/python_apps/api_clients"
directory: "/api_client"
schedule:
interval: "daily"
labels:

View File

@ -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 }}

View File

@ -1,6 +1,6 @@
all: lint test
include ../../tools/python.mk
include ../tools/python.mk
PIP_INSTALL := --editable .
PYLINT_ARG := api_clients tests

View File

@ -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..."

View File

@ -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",