Skip to content
This repository has been archived by the owner on May 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #22 from druvus/1.0.8
Browse files Browse the repository at this point in the history
Fix version number issues
  • Loading branch information
druvus authored Nov 25, 2016
2 parents 82728d9 + 4c7dd44 commit 56d483e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CanSNPer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
CanSNPer: A toolkit for SNP-typing using NGS data.
Copyright (C) 2016 Adrian Lärkeryd
VERSION 1.0.7
VERSION 1.0.8
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -136,7 +136,7 @@ def read_config(args):
'''
user = getpass.getuser()

version = 1.0.7
version = '1.0.8'

config_list = {"tmp_path": "string",
"db_path": "string",
Expand Down Expand Up @@ -223,7 +223,7 @@ def read_config(args):
if config["dev"]: # Developer printout
print("#[DEV] configurations:%s" % config)
if config["verbose"]:
print("#Version: %0.2f" % version)
print("#Version: %s" % version)
if config["galaxy"]:
print("#Running through Galaxy")
return config
Expand Down
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2016-11-25 Emil Hägglund <[email protected]> & Andreas Sjödin <[email protected]>
CanSNPer version 1.0.8
* bug fix release
Minor release to fix rumtime bug introduced in 1.0.7

2016-11-25 Emil Hägglund <[email protected]> & Andreas Sjödin <[email protected]>
CanSNPer version 1.0.7
* setup.py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="CanSNPer",
version="1.0.7",
version="1.0.8",
url="https://github.com/adrlar/CanSNPer",
description="CanSNPer: A toolkit for SNP-typing using NGS data.",
license="GPL'",
Expand Down

0 comments on commit 56d483e

Please sign in to comment.