Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions DataProcessingTools/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import h5py
import os
import fnmatch
import pathlib


class ExclusiveOptions():
Expand Down Expand Up @@ -212,6 +213,10 @@ def load(self, fname=None):
for (k, v) in data.items():
if k == "args":
self.args = v
elif k == "dirs":
self.dirs = []
for d in v:
self.dirs.append(pathlib.Path(d))
elif k == "indexer":
pass
else:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ scipy
matplotlib
h5py
hickle
pathlib
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from distutils.core import setup

setup(name="DataProcessingTools",
version="0.17.0",
version="0.17.1",
description="""Tools for processing data with hierarchical organization""",
url="https://github.com/grero/DataProcessingTools.git",
author="Roger Herikstad",
Expand Down