Skip to content

Commit

Permalink
Fix up import of cloudpickle to use vendored version
Browse files Browse the repository at this point in the history
  • Loading branch information
sklam committed Apr 26, 2021
1 parent b9a7fc1 commit 58c4e32
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions numba/core/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@


import pickle
from cloudpickle import cloudpickle_fast

cloudpickle = cloudpickle_fast
from numba.cloudpickle import cloudpickle_fast as cloudpickle


#
Expand Down Expand Up @@ -161,7 +159,7 @@ def is_serialiable(obj):
return True


class NumbaPickler(cloudpickle_fast.CloudPickler):
class NumbaPickler(cloudpickle.CloudPickler):
pass


Expand Down

0 comments on commit 58c4e32

Please sign in to comment.