Fixes to get tests passing in Python 3.
This commit is contained in:
4
setup.py
4
setup.py
@@ -9,7 +9,7 @@ read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
|
||||
|
||||
|
||||
pkgmeta = {}
|
||||
execfile(os.path.join(os.path.dirname(__file__), 'markdownify', 'pkgmeta.py'),
|
||||
exec(open(os.path.join(os.path.dirname(__file__), 'markdownify', 'pkgmeta.py')).read(),
|
||||
pkgmeta)
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ setup(
|
||||
'pytest',
|
||||
],
|
||||
install_requires=[
|
||||
'beautifulsoup4',
|
||||
'beautifulsoup4', 'six'
|
||||
],
|
||||
classifiers=[
|
||||
'Environment :: Web Environment',
|
||||
|
||||
Reference in New Issue
Block a user