Skip to content

Commit

Permalink
fix ImportError
Browse files Browse the repository at this point in the history
  • Loading branch information
damnever committed May 8, 2016
1 parent c1e5e9b commit 1b6858c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pigar/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

from __future__ import print_function, division, absolute_import

version = __version__ = '0.6.8'
version = __version__ = '0.6.9'
version_info = [int(num) for num in version.split('.')]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import codecs


from setuptools import setup, find_packages
from setuptools import setup

version = ''
with open('pigar/_version.py', 'r') as f:
Expand Down Expand Up @@ -50,7 +50,7 @@
'Programming Language :: Python :: 3.5',
],
keywords='requirements tool',
packages=find_packages(exclude=['pigar', 'pigar.*']),
packages=['pigar', 'pigar.extractor', 'pigar.tests'],
install_requires=install_requires,
include_package_data=True,
entry_points={
Expand Down

0 comments on commit 1b6858c

Please sign in to comment.