Skip to content

Commit 7fdaea8

Browse files
authored
docs: add Python 3.13 to supported versions (#114)
* docs: add Python 3.13 to supported versions * fix: linter
1 parent bc48b17 commit 7fdaea8

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,17 @@ workflows:
141141
- tests-python:
142142
name: test-3.12
143143
python-image: "cimg/python:3.12"
144+
- tests-python:
145+
name: test-3.13
146+
python-image: "cimg/python:3.13"
144147
- tests-python:
145148
requires:
146149
- test-3.8
147150
- test-3.9
148151
- test-3.10
149152
- test-3.11
150153
- test-3.12
154+
- test-3.13
151155
name: test-integration
152156
python-image: *default-python
153157
pytest-marker: "integration"

influxdb_client_3/write_client/client/write_api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,8 @@ def _write_batching(self, bucket, org, data,
461461
precision, **kwargs)
462462

463463
elif 'polars' in str(type(data)):
464-
from influxdb_client_3.write_client.client.write.polars_dataframe_serializer import PolarsDataframeSerializer
464+
from influxdb_client_3.write_client.client.write.polars_dataframe_serializer \
465+
import PolarsDataframeSerializer
465466
serializer = PolarsDataframeSerializer(data,
466467
self._point_settings, precision,
467468
self._write_options.batch_size, **kwargs)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,6 @@ def get_version():
6565
'Programming Language :: Python :: 3.10',
6666
'Programming Language :: Python :: 3.11',
6767
'Programming Language :: Python :: 3.12',
68+
'Programming Language :: Python :: 3.13',
6869
]
6970
)

0 commit comments

Comments
 (0)