Skip to content

Commit

Permalink
Use 'int64' and bump version to v0.1.7 (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: Aivin V. Solatorio <avsolatorio@gmail.com>
  • Loading branch information
avsolatorio committed Apr 28, 2024
1 parent a4303c0 commit e14fab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/realtabformer/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.6
0.1.7
2 changes: 1 addition & 1 deletion src/realtabformer/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def process_datetime_data(

# Convert to the numerical representation
# of the datetime (UNIX timestamp)
series = (series.astype(int) / 1e9)
series = (series.astype("int64") / 1e9)

# Fill NA
series.loc[null_idx] = pd.NA
Expand Down

0 comments on commit e14fab3

Please sign in to comment.