Skip to content

Commit

Permalink
fixes memory leak in pyndl.ndl.ndl; fixes problem in pyndl.sysinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
derNarr committed Feb 13, 2018
1 parent 388f343 commit 38e76b7
Show file tree
Hide file tree
Showing 3 changed files with 516 additions and 515 deletions.
4 changes: 2 additions & 2 deletions pyndl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
__author__ = ('Konstantin Sering, Marc Weitz, '
'David-Elias Künstle, Lennard Schneider')
__author_email__ = '[email protected]'
__version__ = '0.4.2'
__version__ = '0.4.3'
__license__ = 'MIT'
__description__ = ('Naive discriminative learning implements learning and '
'classification models based on the Rescorla-Wagner '
Expand All @@ -43,7 +43,7 @@ def sysinfo():
Prints system the dependency information
"""
pyndl = pkg_resources.working_set.by_key["pyndl"]
dependencies = [str(r) for r in pyndl.requires()]
dependencies = [r.project_name for r in pyndl.requires()]

header = ("Pyndl Information\n"
"=================\n\n")
Expand Down
Loading

0 comments on commit 38e76b7

Please sign in to comment.