diff --git a/Makefile b/Makefile index 42a23d561b..0f3fa0fbce 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PWD = $(shell pwd) UID = $(shell id -u) GID = $(shell id -g) -NPM_VERSION = $(shell poetry run python -m scripts.generate_semver) +NPM_VERSION = $(shell python -m scripts.generate_semver) PY_SOURCES = authentik tests scripts lifecycle .github DOCKER_IMAGE ?= "authentik:test" @@ -145,7 +145,7 @@ gen-client-py: gen-clean-py ## Build and install the authentik API for Python docker run \ --rm -v ${PWD}:/local \ --user ${UID}:${GID} \ - docker.io/openapitools/openapi-generator-cli:v7.4.0 generate \ + docker.io/openapitools/openapi-generator-cli:v7.11.0 generate \ -i /local/schema.yml \ -g python \ -o /local/${GEN_API_PY} \