Skip to content

Commit

Permalink
Fix hashable for dict
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Feb 23, 2015
1 parent 787414c commit 7d221db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dependenpy/utils.py
Expand Up @@ -242,7 +242,7 @@ def _build_up_matrix(self, down_level):
modules_indexes = {}
index_old, index_new = 0, -1
for m in self.matrices[down_level]['modules']:
up_module = m['name'].split('.')[:down_level]
up_module = '.'.join(m['name'].split('.')[:down_level])
# FIXME: We could maybe get rid of path...
if seen_module.get(up_module, None) is not None:
# seen_module[up_module]['path'] += ', ' + m['path']
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -9,19 +9,19 @@

setup(
name='dependenpy',
version='v0.2-beta',
version='v1.0',
packages=['dependenpy'],
license='MPL 2.0',

author='Timothée Mazzucotelli',
author_email='timothee.mazzucotelli@gmail.com',
url='https://github.com/Pawamoy/dependenpy',
download_url = 'https://github.com/Pawamoy/dependenpy/tarball/v0.2-beta',
download_url = 'https://github.com/Pawamoy/dependenpy/tarball/v1.0',

keywords="dependency matrix dsm",
description="A Python module that builds a Dependency Matrix for your project.",
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities",
Expand Down

0 comments on commit 7d221db

Please sign in to comment.