Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ executors:
type: string
default: << pipeline.parameters.default-python-image >>
docker:
- image: <<parameters.python-image>>
- image: << parameters.python-image >>
- image: influxdb:3-core
environment:
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
Expand All @@ -24,7 +24,7 @@ executors:
type: string
default: << pipeline.parameters.default-python-image >>
docker:
- image: <<parameters.python-image>>
- image: << parameters.python-image >>
- image: influxdb:3-core
environment:
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
parameters:
python-image:
type: string
default: <<pipeline.parameters.default-python-image>>>>
default: << pipeline.parameters.default-python-image >>
exe:
type: string
default: docker-amd64-image
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- upload-codecov-arm64
check-code-style:
docker:
- image: <<pipeline.parameters.default-python-image>>
- image: << pipeline.parameters.default-python-image >>
environment:
PIPENV_VENV_IN_PROJECT: true
steps:
Expand All @@ -157,7 +157,7 @@ jobs:
flake8 Examples/
check-twine:
docker:
- image: <<pipeline.parameters.default-python-image>>
- image: << pipeline.parameters.default-python-image >>
environment:
PIPENV_VENV_IN_PROJECT: true
steps:
Expand All @@ -171,7 +171,7 @@ jobs:
twine check dist/*
check-docstyle:
docker:
- image: <<pipeline.parameters.default-python-image>>
- image: << pipeline.parameters.default-python-image >>
environment:
PIPENV_VENV_IN_PROJECT: true
steps:
Expand Down Expand Up @@ -202,7 +202,7 @@ workflows:
requires:
- tests-python
name: test-integration
python-image: <<pipeline.parameters.default-python-image>>
python-image: << pipeline.parameters.default-python-image >>
pytest-marker: "integration"

nightly:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
Loading