Commit 056e7b64 authored by Jay's avatar Jay Committed by jay
Browse files

Swap to dill to get better serialization and alter serialization on nested subclasses.

parent 0c302535
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ install:
  - conda info -a

  # Create a virtual env and install dependencies
  - conda create -y -q -n test-env python=$TRAVIS_PYTHON_VERSION nose numpy pillow scipy pandas networkx scikit-image sqlalchemy numexpr
  - conda create -y -q -n test-env python=$TRAVIS_PYTHON_VERSION nose numpy pillow scipy pandas networkx scikit-image sqlalchemy numexpr dill
  # Activate the env
  - source activate test-env

+2 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@ class Homography(np.ndarray):
        obj.x2 = make_homogeneous(x2)
        obj.pd_index = index

        cls.__array_finalize__(cls, obj)

        return obj

    def __array_finalize__(self, obj):
+2 −1
Original line number Diff line number Diff line
@@ -9,3 +9,4 @@ networkx
pandas
scikit-image
sqlalchemy
dill
 No newline at end of file