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
22 changes: 8 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ parameters:
executors:
docker-amd64-image:
parameters:
maven-image:
python-image:
type: string
default: << pipeline.parameters.default-python-image >>
docker:
- image: <<parameters.maven-image>>
- image: <<parameters.python-image>>
- image: influxdb:3-core
environment:
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
- INFLUXDB3_OBJECT_STORE=file
- 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: <<parameters.maven-image>>
- image: <<parameters.python-image>>
- image: influxdb:3-core
environment:
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
Expand Down Expand Up @@ -96,20 +96,14 @@ jobs:
type: string
default: <<pipeline.parameters.default-python-image>>>>
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:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading