File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
1 . [ #375 ] ( https://github.com/influxdata/influxdb-client-python/pull/375 ) : Construct ` InfluxDBError ` without HTTP response
5
5
1 . [ #378 ] ( https://github.com/influxdata/influxdb-client-python/pull/378 ) : Correct serialization DataFrame with nan values [ DataFrame]
6
6
1 . [ #384 ] ( https://github.com/influxdata/influxdb-client-python/pull/384 ) : Timeout can be specified as a ` float `
7
+ 1 . [ #380 ] ( https://github.com/influxdata/influxdb-client-python/pull/380 ) : Correct data types for querying [ DataFrame]
7
8
8
9
### CI
9
10
1 . [ #370 ] ( https://github.com/influxdata/influxdb-client-python/pull/370 ) : Add Python 3.10 to CI builds
Original file line number Diff line number Diff line change @@ -246,8 +246,8 @@ def test_pandas_column_datatype(self):
246
246
self .assertEqual (13 , df .dtypes .__len__ ())
247
247
self .assertEqual ('object' , df .dtypes ['result' ].name )
248
248
self .assertEqual ('int64' , df .dtypes ['table' ].name )
249
- self .assertEqual ('datetime64[ns, UTC] ' , df .dtypes ['_start' ].name )
250
- self .assertEqual ('datetime64[ns, UTC] ' , df .dtypes ['_stop' ].name )
249
+ self .assertIn ('datetime64[ns,' , df .dtypes ['_start' ].name )
250
+ self .assertIn ('datetime64[ns,' , df .dtypes ['_stop' ].name )
251
251
self .assertEqual ('object' , df .dtypes ['_field' ].name )
252
252
self .assertEqual ('object' , df .dtypes ['_measurement' ].name )
253
253
self .assertEqual ('object' , df .dtypes ['host' ].name )
You can’t perform that action at this time.
0 commit comments