diff --git a/.circleci/config.yml b/.circleci/config.yml index 1e8c3a6..559f875 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,11 +8,11 @@ parameters: executors: docker-amd64-image: parameters: - maven-image: + python-image: type: string default: << pipeline.parameters.default-python-image >> docker: - - image: <> + - image: <> - image: influxdb:3-core environment: - INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01 @@ -20,11 +20,11 @@ executors: - INFLUXDB3_DB_DIR=/var/lib/influxdb3/data docker-arm64-image: parameters: - maven-image: + python-image: type: string default: << pipeline.parameters.default-python-image >> docker: - - image: <> + - image: <> - image: influxdb:3-core environment: - INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01 @@ -96,20 +96,14 @@ jobs: type: string default: <>>> exe: - type: executor + type: string default: docker-amd64-image pytest-marker: type: string default: "not integration" - docker: - - image: << parameters.python-image >> - environment: - PIPENV_VENV_IN_PROJECT: true - - image: influxdb:3-core - environment: - - INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01 - - INFLUXDB3_OBJECT_STORE=file - - INFLUXDB3_DB_DIR=/var/lib/influxdb3/data + executor: + name: << parameters.exe >> + python-image: << parameters.python-image >> steps: - checkout - run: diff --git a/CHANGELOG.md b/CHANGELOG.md index 10f4eef..61c776a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # 0.17.0 [unreleased] +### CI + +1. [#164](https://github.com/InfluxCommunity/influxdb3-python/pull/164): Fix pipelines not downloading the correct python images. + ## 0.16.0 [2025-09-15] ### Features