Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
# before installation
with open('src/variant_tools/_version.py') as init:
for line in init:
if line.startswith('VTOOLS_VERSION='):
VTOOLS_VERSION = line[15:].strip().strip('"').strip("'")
if line.startswith('VTOOLS_VERSION'):
VTOOLS_VERSION = line.split('=')[1].strip().strip('"').strip("'")
break
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These changes are irrelevant.


SWIG_OPTS = [
Expand Down
9 changes: 6 additions & 3 deletions src/variant_tools/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@

import sys

VTOOLS_VERSION='3.1.3'
VTOOLS_VERSION = '3.1.4'

pyver = sys.version_info
VTOOLS_FULL_VERSION='{} for Python {}.{}.{}'.format(VTOOLS_VERSION, pyver.major, pyver.minor, pyver.micro)
VTOOLS_COPYRIGHT = '''variant tools {} : Copyright (c) 2011 - 2016 Bo Peng'''.format(VTOOLS_VERSION)
VTOOLS_FULL_VERSION = '{} for Python {}.{}.{}'.format(VTOOLS_VERSION,
pyver.major, pyver.minor,
pyver.micro)
VTOOLS_COPYRIGHT = '''variant tools {} : Copyright (c) 2011 - 2016 Bo Peng'''.format(
VTOOLS_VERSION)
VTOOLS_CONTACT = '''Please visit https://github.com/vatlab/varianttools for more information.'''