Skip to content

Commit

Permalink
Fix long_description loading error in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuess committed Oct 25, 2017
1 parent 0f65596 commit b1f6a49
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [unreleased]

## [1.0.1] 2017-10-25
### Fixed

- Fix python2 compatibility issue in setup.py
- long_description in text format instead of RST

## [1.0.0] 2017-10-25

## [1.0.0] 2017-10-25
### Added

- Add `utils.extmath.randomized_svd` providing a fast approximate truncated SVD
Expand Down
2 changes: 1 addition & 1 deletion mpnum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@
from .mpsmpo import * # noqa: F401, F403


__version__ = "1.0.0"
__version__ = "1.0.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
try:
# can be created via pandoc:
# pandoc --from=markdown --to=rst --output=README.rst README.md
long_description = open('README.rst').read()
except FileNotFoundError:
long_description = open('README.txt').read()
except IOError:
long_description = description
year = "2016"

Expand Down

0 comments on commit b1f6a49

Please sign in to comment.