From e5db966f669a3df8c5f882294be6efa42dd3f77b Mon Sep 17 00:00:00 2001 From: Lingxin Meng Date: Thu, 16 Oct 2025 17:18:09 +0100 Subject: [PATCH 1/2] restore click and pipx related stuff --- .gitlab-ci.yml | 4 ++-- pyproject.toml | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fd54e97d4..628185ac2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ before_script: " | git credential approve - python -m venv venv - source venv/bin/activate - - python -m pip install -U pip hatch 'click < 8.3.0' + - python -m pip install -U pip pipx - python -m pip freeze --local pre-commit: @@ -57,7 +57,7 @@ make-docs: stage: build rules: - if: $CI_PIPELINE_SOURCE == "push" - script: hatch run docs:build-check + script: pipx run hatch run docs:build-check artifacts: paths: - site diff --git a/pyproject.toml b/pyproject.toml index dead9cd5e..ec45fa230 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,6 @@ dependencies = [ "mdx-truly-sane-lists", # for 2-space indented lists (https://github.com/mkdocs/mkdocs/issues/545) # formatting signatures "black>23", - "click<8.3.0", # https://github.com/pypa/hatch/issues/2050 ] [tool.hatch.envs.docs.env-vars] -- GitLab From 3e468c46b3ae01be255d889ac38cf17cdb17134f Mon Sep 17 00:00:00 2001 From: Lingxin Meng Date: Thu, 16 Oct 2025 18:39:55 +0100 Subject: [PATCH 2/2] increase itkdb mq*t versions --- setting/requirements-pip.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setting/requirements-pip.txt b/setting/requirements-pip.txt index 0d46b57b7..dae094240 100644 --- a/setting/requirements-pip.txt +++ b/setting/requirements-pip.txt @@ -10,14 +10,14 @@ Flask-Session == 0.8.0 Flask-SocketIO == 5.5.1 gevent ~= 25.5 influxdb-client>=1.36.0 -itkdb[eos] >= 0.6.14 +itkdb[eos] >= 0.6.16 itksn >= 0.4.2 json2html jsonschema matplotlib -module-qc-analysis-tools == 2.6.4 -module-qc-data-tools == 1.3.1 -module-qc-database-tools == 2.7.2 +module-qc-analysis-tools >= 2.7.0rc2 +module-qc-data-tools >= 1.4.0rc4 +module-qc-database-tools >= 2.9.0rc0 numpy pdf2image pillow -- GitLab