From bc20100839cd3821163a21853b84546be8e82f10 Mon Sep 17 00:00:00 2001 From: Benjamin Pelletier Date: Mon, 29 Jun 2026 16:11:04 -0700 Subject: [PATCH 1/2] Rename pyproject from 'monitoring' to 'interuss-monitoring' With the newly-introduced ability to publish on PyPI, the name of this project needs to be globally available in PyPI. This PR changes the taken `monitoring` name to `interuss-monitoring`. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 845fbbd005..5478f0d23e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "monitoring" +name = "interuss-monitoring" dynamic = ["version"] authors = [ { name="InterUSS Platform", email="tsc@lists.interussplatform.org" }, From e066c814fb5f9ab8d3727b687fed8ef8b743ca82 Mon Sep 17 00:00:00 2001 From: Benjamin Pelletier Date: Mon, 29 Jun 2026 16:23:53 -0700 Subject: [PATCH 2/2] Update magic environment variable name --- monitoring/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitoring/Dockerfile b/monitoring/Dockerfile index aa64edf06c..b507a6dd79 100644 --- a/monitoring/Dockerfile +++ b/monitoring/Dockerfile @@ -39,7 +39,7 @@ ENV GIT_COMMIT_HASH=$commit_hash ENV UV_LINK_MODE=copy ENV UV_PROJECT_ENVIRONMENT=/venv/ ENV VIRTUAL_ENV=/venv/ -ENV SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MONITORING=$version +ENV SETUPTOOLS_SCM_PRETEND_VERSION_FOR_INTERUSS_MONITORING=$version RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=./uv.lock,target=/app/uv.lock \ --mount=type=bind,source=./pyproject.toml,target=/app/pyproject.toml \