Skip to content

Commit

Permalink
Bugfix to np.int for compat with newer numpy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyhunt committed Apr 12, 2024
1 parent 6fda607 commit 2574500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smartmultiprocessing/_sphandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _generate_task_info_dataframe(self):
write_header = False
else:
existing_task_information = None
completed_tasks = np.zeros(0, dtype=np.int)
completed_tasks = np.zeros(0, dtype=int)
write_header = True

# Generate a blank df with every task to run on, ignoring tasks that are already done
Expand Down

0 comments on commit 2574500

Please sign in to comment.