Skip to content

Commit

Permalink
Merge pull request #12 from bartcharbon/chore/bump_versions
Browse files Browse the repository at this point in the history
Chore/bump versions
  • Loading branch information
dennishendriksen authored Dec 9, 2024
2 parents 1b3ebc7 + 7cb232a commit dd93a55
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
python==3.11.9
pysam==0.22.0
pybedtools==0.9.1
pysam==0.22.1
pybedtools==0.10.0
numpy==1.26.4
pathos==0.3.2
scikit-learn==1.4.0
scipy==1.13.0
natsort==8.4.0
pathos==0.3.3
scikit-learn==1.5.2
scipy==1.14.1
natsort==8.4.0
21 changes: 10 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import os
import sys
from setuptools import setup, find_packages
#sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/stragler')

from setuptools import setup
from straglr import __version__

##remove postfix here because setuptools does not like it
version = __version__.split('-')[0]

setup(
name='straglr',
version=__version__,
version=version,
description='Straglr',
long_description='Short tandem repeat genotyping using long reads',
url='https://github.com/bcgsc/straglr.git',
Expand All @@ -22,12 +21,12 @@
],
packages=['straglr'],
install_requires = [
'pysam==0.22.0',
'pybedtools==0.9.1',
'pysam==0.22.1',
'pybedtools==0.10.0',
'numpy==1.26.4',
'pathos==0.3.2',
'scikit-learn==1.4.0',
'scipy==1.13.0',
'pathos==0.3.3',
'scikit-learn==1.5.2',
'scipy==1.14.1',
'natsort==8.4.0'
],
entry_points ={
Expand Down
2 changes: 1 addition & 1 deletion straglr/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.4"
__version__ = "1.4.5-vip-v1"

0 comments on commit dd93a55

Please sign in to comment.