Skip to content

Commit

Permalink
Fix python3 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
amdei committed May 4, 2020
1 parent 867a3a5 commit d6c5edd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion prospector2html/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import sys

from prospector2html import Prospector2HTML
from .prospector2html import Prospector2HTML

def main():
prh = Prospector2HTML()
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.0.3'
__version__ = '1.0.4'

try:
from setuptools import setup
Expand Down Expand Up @@ -50,7 +50,6 @@
},
install_requires=[
'PyYAML',
'prospector',
'json2html'
]
)

0 comments on commit d6c5edd

Please sign in to comment.