From 1e2f01d411ff68d63f1ec80b6b9fa74f043c37e6 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 16 Oct 2025 10:21:35 +0700 Subject: [PATCH 1/4] [EMPTY] trigger CI From 9e0a2ae765eafe741c2c9d6eaba48c58664ec06c Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 16 Oct 2025 10:30:36 +0700 Subject: [PATCH 2/4] chore: fix spacing issues in .circleci/config.yml --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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: From 5b1a526a01bada19b1bbb2d669cf8a13898748fa Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 16 Oct 2025 10:45:28 +0700 Subject: [PATCH 3/4] chore: update CHANGELOG with config.yml fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61c776a..83c5635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### 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. ## 0.16.0 [2025-09-15] From 8356a609055b280799c8fa625fe31c5e6c129c04 Mon Sep 17 00:00:00 2001 From: NguyenHoangSon96 Date: Thu, 16 Oct 2025 10:53:16 +0700 Subject: [PATCH 4/4] chore: update CHANGELOG for config.yml fixes and spacing adjustments --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83c5635..e653e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +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. +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]