Skip to content

Commit

Permalink
New distribution [0.3.0.post2]
Browse files Browse the repository at this point in the history
 - fixed minor bugs in setup.py with encoding errors
  • Loading branch information
JarryShaw committed Dec 12, 2018
1 parent fc3f728 commit 53d71af
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 0.3.0.post2

> Release date: 2018-12-12
  There were no new changes in version 0.3.0.post2. But minor bugs fixed in `setup.py` with encoding errors.

## Version 0.3.0.post1

> Release date: 2018-12-08
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
raise

# version string
__version__ = '0.3.0.post1'
__version__ = '0.3.0.post2'

# install requires
try:
Expand All @@ -33,8 +33,8 @@
requirements = None

# README
with open('README.rst', 'r') as file:
long_desc = file.read()
with open('README.rst', 'rb') as file:
long_desc = file.read().decode('utf-8')

# set-up script for pip distribution
setup(
Expand Down

0 comments on commit 53d71af

Please sign in to comment.