Skip to content

Commit

Permalink
Fixes #112
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Nov 10, 2016
1 parent 40d8dc6 commit 63560ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
if not hasattr(sys, 'version_info') or sys.version_info < (2, 6):
raise SystemExit("IM requires Python version 2.6 or above.")

if 'bdist_wheel' in sys.argv:
raise RuntimeError("This setup.py does not support wheels")

# Add contextualization dir files
install_path = '/usr/share/im'
datafiles = [(os.path.join(install_path, root), [os.path.join(root, f) for f in files])
Expand Down

0 comments on commit 63560ae

Please sign in to comment.