Skip to content

Commit

Permalink
Fix skycoord being converted to string in dd.from_pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobie authored Feb 18, 2025
1 parent 89de3e0 commit 871c6d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vasttools/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import numexpr
import gc
import time
import dask
import dask.dataframe as dd
import logging
import logging.handlers
Expand Down Expand Up @@ -67,6 +68,7 @@
HOST_NCPU = cpu_count()
numexpr.set_num_threads(int(HOST_NCPU / 4))

dask.config.set({"dataframe.convert-string": False})

class QueryInitError(Exception):
"""
Expand Down

0 comments on commit 871c6d7

Please sign in to comment.