Skip to content

Commit

Permalink
Python 2 support bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahsawyers committed Jul 16, 2019
1 parent 0fc67de commit 3972ec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

# Long Description.
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()

setuptools.setup(
# General setup information.
name='autostack',
version='0.0.5',
version='0.0.6',
packages=setuptools.find_packages(exclude=['tests']),
scripts=[
'autostack/autostack-terminal'
Expand Down

0 comments on commit 3972ec9

Please sign in to comment.