Skip to content

Commit

Permalink
pypi not rendering markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Jun 1, 2018
1 parent 554b927 commit d8facf2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
include LICENSE

# Include readme file
include README.md
include README.rst
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.5.8'
version = u'0.5.10'
# The full version, including alpha/beta/rc tags.
release = u'0.5.8'
release = u'0.5.10'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
Expand All @@ -17,7 +17,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.5.8',
version='0.5.10',

description='TableOne',
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion tableone.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

__author__ = "Tom Pollard <tpollard@mit.edu>, Alistair Johnson"
__version__ = "0.5.8"
__version__ = "0.5.10"

import pandas as pd
from scipy import stats
Expand Down

0 comments on commit d8facf2

Please sign in to comment.