Skip to content

Commit

Permalink
small setup fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Feb 23, 2018
1 parent a43d63c commit 026556f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ before_install:
# don't install miniconda if it's already cached
# if not yet installed, use different versions for py2 vs. py3
- |
if [ -f $HOME/miniconda/bin ]
if [ -f $HOME/miniconda/bin ];
then
echo "miniconda already installed"
else
Expand Down
2 changes: 1 addition & 1 deletion mhcnames/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)
from .allele_parse_error import AlleleParseError

__version__ = "0.4.5"
__version__ = "0.4.6"

__all__ = [
"AlleleName",
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
try:
import pypandoc
readme_restructured = pypandoc.convert(readme_markdown, to='rst', format='md')
with open(readme_path.replace(".md", ".rst"), "w") as f:
f.write(readme_restructured)
except:
readme_restructured = readme_markdown
logging.warn("Conversion of long_description from MD to RST failed")
Expand Down

0 comments on commit 026556f

Please sign in to comment.