Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit da63d80

Browse files
committed
fix: try to speed-up build
1 parent f56fc99 commit da63d80

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ install:
4141
- pip install tox-travis
4242
- pip install setuptools
4343
- pip install coveralls
44-
- pip list
4544
- mkdir -p "influxdb_install/${INFLUXDB_VER}"
4645
- if [ -n "${INFLUXDB_VER}" ] ; then wget "https://dl.influxdata.com/influxdb/releases/influxdb_${INFLUXDB_VER}_amd64.deb" ; fi
4746
- if [ -n "${INFLUXDB_VER}" ] ; then dpkg -x influxdb*.deb "influxdb_install/${INFLUXDB_VER}" ; fi

influxdb/_dataframe_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def _convert_dataframe_to_json(dataframe,
305305
'time': np.int64(ts.value / precision_factor)}
306306
for ts, tag, (_, rec) in zip(
307307
dataframe.index,
308-
dataframe[tag_columns].to_dict('record'),
308+
dataframe[tag_columns].to_dict('records'),
309309
dataframe[field_columns].iterrows()
310310
)
311311
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ deps = -r{toxinidir}/requirements.txt
1717
py38: pandas==1.1.2
1818
py38: numpy==1.19.0
1919
py39: pandas==1.1.2
20-
py39: numpy==1.19.0
20+
py39: numpy==1.19.2
2121
# Only install pandas with non-pypy interpreters
2222
# Testing all combinations would be too expensive
2323
commands = nosetests -v --with-doctest {posargs}

0 commit comments

Comments
 (0)