diff --git a/.circleci/config.yml b/.circleci/config.yml index 559f875..62f8a2e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ executors: type: string default: << pipeline.parameters.default-python-image >> docker: - - image: <> + - image: << parameters.python-image >> - image: influxdb:3-core environment: - INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01 @@ -24,7 +24,7 @@ executors: type: string default: << pipeline.parameters.default-python-image >> docker: - - image: <> + - image: << parameters.python-image >> - image: influxdb:3-core environment: - INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01 @@ -94,7 +94,7 @@ jobs: parameters: python-image: type: string - default: <>>> + default: << pipeline.parameters.default-python-image >> exe: type: string default: docker-amd64-image @@ -130,7 +130,7 @@ jobs: - upload-codecov-arm64 check-code-style: docker: - - image: <> + - image: << pipeline.parameters.default-python-image >> environment: PIPENV_VENV_IN_PROJECT: true steps: @@ -157,7 +157,7 @@ jobs: flake8 Examples/ check-twine: docker: - - image: <> + - image: << pipeline.parameters.default-python-image >> environment: PIPENV_VENV_IN_PROJECT: true steps: @@ -171,7 +171,7 @@ jobs: twine check dist/* check-docstyle: docker: - - image: <> + - image: << pipeline.parameters.default-python-image >> environment: PIPENV_VENV_IN_PROJECT: true steps: @@ -202,7 +202,7 @@ workflows: requires: - tests-python name: test-integration - python-image: <> + python-image: << pipeline.parameters.default-python-image >> pytest-marker: "integration" nightly: diff --git a/CHANGELOG.md b/CHANGELOG.md index 61c776a..e653e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ ### CI 1. [#164](https://github.com/InfluxCommunity/influxdb3-python/pull/164): Fix pipelines not downloading the correct python images. +1. [#167](https://github.com/InfluxCommunity/influxdb3-python/pull/167): + - Remove incorrect symbol `>>` for config.yml. + - I have added spacing for `<<` and `>>` just for consistency. ## 0.16.0 [2025-09-15]