Skip to content

Commit

Permalink
Fixed line endings for PYPI long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugovdberg committed Mar 3, 2020
1 parent 85b3962 commit 002e88f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
with open(path.join(HERE, "HISTORY.rst"), encoding="utf-8") as history_file:
HISTORY = history_file.read()

LONG_DESCRIPTION = README + "\n\n" + HISTORY
LONG_DESCRIPTION = (README + "\n\n" + HISTORY).replace("\r\n", "\n")

if sys.version_info[:2] < (3, 4):
REQUIREMENTS = ["enum34"]
Expand Down

0 comments on commit 002e88f

Please sign in to comment.