From fc66dd21fe534231a61b7e23b7dbdfec1b407323 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 23 Apr 2025 07:16:36 +0000 Subject: [PATCH] Update Python version generated to reflect new python minimum version. --- .../ci/release/cibuildwheel_ubuntu.gitlab-ci.yml | 16 ++++++++-------- .../release/cibuildwheel_windows.gitlab-ci.yml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitlab/ci/release/cibuildwheel_ubuntu.gitlab-ci.yml b/.gitlab/ci/release/cibuildwheel_ubuntu.gitlab-ci.yml index e22b5ee..a11f593 100644 --- a/.gitlab/ci/release/cibuildwheel_ubuntu.gitlab-ci.yml +++ b/.gitlab/ci/release/cibuildwheel_ubuntu.gitlab-ci.yml @@ -3,9 +3,9 @@ include: release:pip:ubuntu: extends: .release:pip:template - needs: - - build:ubuntu_python - - test:ubuntu_python + needs: + - build:ubuntu_python + - test:ubuntu_python # make a docker daemon available for cibuildwheel to use services: - name: docker:dind @@ -17,7 +17,7 @@ release:pip:ubuntu: DOCKER_HOST: tcp://docker:2375/ DOCKER_DRIVER: overlay2 # See https://github.com/docker-library/docker/pull/166 - DOCKER_TLS_CERTDIR: "" + DOCKER_TLS_CERTDIR: "" before_script: - !reference [.retrieve_deps:apt, script] @@ -27,8 +27,8 @@ release:pip:ubuntu: parallel: matrix: - - CIBW_BUILD: "cp38-manylinux_x86_64" - - CIBW_BUILD: "cp39-manylinux_x86_64" + # - CIBW_BUILD: "cp38-manylinux_x86_64" + # - CIBW_BUILD: "cp39-manylinux_x86_64" - CIBW_BUILD: "cp310-manylinux_x86_64" - CIBW_BUILD: "cp311-manylinux_x86_64" - CIBW_BUILD: "cp312-manylinux_x86_64" @@ -37,10 +37,10 @@ release:pip:ubuntu: script: - set -x - python --version - - python -m pip install cibuildwheel==2.22.0 + - python -m pip install cibuildwheel==2.22.0 - cibuildwheel --output-dir wheelhouse - set +x deploy:pip:ubuntu: - extends: + extends: - .deploy:pip:ubuntu:template diff --git a/.gitlab/ci/release/cibuildwheel_windows.gitlab-ci.yml b/.gitlab/ci/release/cibuildwheel_windows.gitlab-ci.yml index ae371b2..ebbe971 100644 --- a/.gitlab/ci/release/cibuildwheel_windows.gitlab-ci.yml +++ b/.gitlab/ci/release/cibuildwheel_windows.gitlab-ci.yml @@ -20,8 +20,8 @@ release:pip:windows: parallel: matrix: - - CIBW_BUILD: "cp38-win_amd64" - - CIBW_BUILD: "cp39-win_amd64" + # - CIBW_BUILD: "cp38-win_amd64" + # - CIBW_BUILD: "cp39-win_amd64" - CIBW_BUILD: "cp310-win_amd64" - CIBW_BUILD: "cp311-win_amd64" - CIBW_BUILD: "cp312-win_amd64" -- GitLab