Skip to content

Commit faafb36

Browse files
authored
Merge branch 'master' into master
2 parents c250e8e + feb97ee commit faafb36

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 1.49.0 [unreleased]
1+
## 1.50.0 [unreleased]
2+
3+
### Features
4+
5+
1. [696](https://github.com/influxdata/influxdb-client-python/pull/696): Move "setuptools" package to build dependency.
6+
7+
## 1.49.0 [2025-05-22]
28

39
### Bug Fixes
410

conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{% set name = "influxdb_client" %}
2-
{% set version = "1.48.0" %}
2+
{% set version = "1.49.0" %}
33

44

55
package:
66
name: {{ name|lower }}
77
version: {{ version }}
88

99
source:
10-
url: https://files.pythonhosted.org/packages/11/47/b756380917cb4b968bd871fc006128e2cc9897fb1ab4bcf7d108f9601e78/influxdb_client-1.48.0.tar.gz
11-
sha256: 414d5b5eff7d2b6b453f33e2826ea9872ea04a11996ba9c8604b0c1df57c8559
10+
url: https://files.pythonhosted.org/packages/2a/f3/9c418215cf399529175ed5b198d15a21c2e29f28d90932107634b375c9ee/influxdb_client-1.49.0.tar.gz
11+
sha256: 4a53a218adef6ac9458bfbd31fa08c76194f70310c6b4e01f53d804bd2c48e03
1212

1313
build:
1414
number: 0

influxdb_client/client/influxdb_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,15 +265,15 @@ def retry(self, conf: (str, str, str), data: str, exception: InfluxDBError):
265265
266266
:param write_options: Write API configuration
267267
:param point_settings: settings to store default tags
268-
:key success_callback: The callable ``callback`` to run after successfully writen a batch.
268+
:key success_callback: The callable ``callback`` to run after having successfully written a batch.
269269
270270
The callable must accept two arguments:
271271
- `Tuple`: ``(bucket, organization, precision)``
272272
- `str`: written data
273273
274274
**[batching mode]**
275275
276-
:key error_callback: The callable ``callback`` to run after unsuccessfully writen a batch.
276+
:key error_callback: The callable ``callback`` to run after having unsuccessfully written a batch.
277277
278278
The callable must accept three arguments:
279279
- `Tuple`: ``(bucket, organization, precision)``

influxdb_client/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of the Client that is used in User-Agent header."""
22

3-
VERSION = '1.49.0dev0'
3+
VERSION = '1.50.0dev0'

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["setuptools>=21.0.0"]
3+
build-backend = "setuptools.build_meta"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
'reactivex >= 4.0.4',
99
'certifi >= 14.05.14',
1010
'python_dateutil >= 2.5.3',
11-
'setuptools >= 21.0.0',
1211
'urllib3 >= 1.26.0'
1312
]
1413

0 commit comments

Comments
 (0)