Skip to content

Commit

Permalink
Merge pull request #66 from databio/dev
Browse files Browse the repository at this point in the history
documentation updates
  • Loading branch information
nsheff authored Oct 22, 2019
2 parents 27ed6ba + 12027cb commit 26be562
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.5.1] - 2019-10-19

### Fixed
- small bug in documentation that prevented automatic doc builds

## [0.5.0] - 2019-10-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion refgenconf/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.5.1"
2 changes: 1 addition & 1 deletion refgenconf/refgenconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def pull_asset(self, genome, asset, tag, unpack=True, force=None,
:param function(str) -> function build_signal_handler: how to create
a signal handler to use during the download; the single argument
to this function factory is the download filepath
:return a list of genome, asset, tag names and a key-value pair with
:return list: a list of genome, asset, tag names and a key-value pair with
which genome config file should be updated if pull succeeds,
else asset key and a null value.
:raise refgenconf.UnboundEnvironmentVariablesError: if genome folder
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
msg = "\033[032mPandoc conversion succeeded.\033[0m"
except(IOError, ImportError, OSError):
print("Warning -- couldn't convert README to rst")
msg = "\033[0;31mWarning: pandoc conversion failed!\033[0m"
long_description = open('README.md').read()


setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
Expand All @@ -52,3 +54,5 @@
author=u'Nathan Sheffield, Vince Reuter, Michal Stolarczyk',
**extra
)

print(msg)

0 comments on commit 26be562

Please sign in to comment.