Skip to content

Commit

Permalink
Merge pull request #2 from petered/deepspike_version_patch
Browse files Browse the repository at this point in the history
Use DeepSpike Release v0.0.1
  • Loading branch information
petered committed Mar 16, 2016
2 parents 3f121f0 + 3e82eb6 commit 4f86023
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,6 @@ target/

#virtualenv
venv/
Data

.idea
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ scikit-learn
pytest
IPython
-e git+http://github.com/petered/[email protected]#egg=plato
-e git+http://github.com/petered/deepspike@rename#egg=deepspike
-e git+http://github.com/petered/deepspike@v0.0.1#egg=deepspike
git+http://github.com/originell/[email protected]#egg=jpype
2 changes: 1 addition & 1 deletion spiking_mlp/jpype_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def register_java_class_path(class_path):
assert isinstance(class_path, (list, tuple)), "class_path should either be a string or a list/tuple"

for cp in class_path:
assert os.path.exists(cp), "Java Class path: %s does not exist" % (cp, )
assert os.path.exists(cp), "Java Class path: %s does not exist. Did you forget to compile the Java code?" % (cp, )

global _JAVA_CLASS_PATH
_JAVA_CLASS_PATH += class_path
Expand Down

0 comments on commit 4f86023

Please sign in to comment.