We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.24.0
Ubuntu Linux
64 bit
import pandas as pd pd.set_option('io.parquet.engine', 'fastparquet') start_time = pd.Timestamp('2024-08-21T00:00:00+02:00') end_time = pd.Timestamp('2024-08-22T00:00:00+02:00') series = pd.date_range(start_time, end_time, freq=pd.Timedelta(minutes=15))[:-1] series = series.tz_convert('UTC').tz_localize(None).astype("datetime64[ms]") df = pd.DataFrame({'datetime': series}) print(df) print(df.dtypes) df.to_parquet('./test.parquet')
The same works like a charm reading a parquet with created with the library. So I suggest a dependency with the fastparquet engine used my site.
No response
The text was updated successfully, but these errors were encountered:
Meanwhile, I can confirm that the problem is caused by what fastparquet writes. The problem does not exist with pyarrow.
Sorry, something went wrong.
No branches or pull requests
Library Version
4.24.0
OS
Ubuntu Linux
OS Architecture
64 bit
How to reproduce?
The same works like a charm reading a parquet with created with the library. So I suggest a dependency with the fastparquet engine used my site.
Failing test
No response
The text was updated successfully, but these errors were encountered: