Skip to content

Commit

Permalink
chore(ci): update default docker image to v2.0.3 (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar authored Dec 16, 2020
1 parent 5eb4cdf commit ae53701
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
default: &default-python "circleci/python:3.6-buster"
influxdb-image:
type: string
default: "influxdb:v2.0.2"
default: "influxdb:v2.0.3"
enabled-ciso-8601:
type: boolean
default: true
Expand Down Expand Up @@ -136,7 +136,7 @@ workflows:
enabled-ciso-8601: false
- tests-python:
name: test-3.6-influxdb-nightly
influxdb-image: "influx:nightly"
influxdb-image: "influxdb2:nightly"
- tests-python:
name: test-3.7
python-image: "circleci/python:3.7-buster"
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
## 1.14.0 [unreleased]

### Features
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/176): Allow providing proxy option to InfluxDBClient
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/179): Allow providing proxy option to InfluxDBClient

### CI
1. [#179](https://github.com/influxdata/influxdb-client-python/pull/179): Updated default docker image to v2.0.3

## 1.13.0 [2020-12-04]

Expand Down
2 changes: 1 addition & 1 deletion scripts/influxdb-restart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ DEFAULT_DOCKER_REGISTRY="quay.io/influxdb/"
DOCKER_REGISTRY="${DOCKER_REGISTRY:-$DEFAULT_DOCKER_REGISTRY}"

DEFAULT_INFLUXDB_V2_REPOSITORY="influxdb"
DEFAULT_INFLUXDB_V2_VERSION="v2.0.2"
DEFAULT_INFLUXDB_V2_VERSION="v2.0.3"
INFLUXDB_V2_REPOSITORY="${INFLUXDB_V2_REPOSITORY:-$DEFAULT_INFLUXDB_V2_REPOSITORY}"
INFLUXDB_V2_VERSION="${INFLUXDB_V2_VERSION:-$DEFAULT_INFLUXDB_V2_VERSION}"
INFLUXDB_V2_IMAGE=${DOCKER_REGISTRY}${INFLUXDB_V2_REPOSITORY}:${INFLUXDB_V2_VERSION}
Expand Down
4 changes: 0 additions & 4 deletions tests/test_DeleteApi.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import pytest

from influxdb_client import PermissionResource, Permission, InfluxDBClient, Point
from influxdb_client.client.write_api import SYNCHRONOUS
from tests.base_test import BaseTest


# TODO https://github.com/influxdata/influxdb/issues/19545
@pytest.mark.skip(reason="https://github.com/influxdata/influxdb/issues/19545")
class DeleteApiTest(BaseTest):

def setUp(self) -> None:
Expand Down

0 comments on commit ae53701

Please sign in to comment.