Skip to content

Commit

Permalink
Updating dependency list
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimwolff committed Nov 22, 2018
1 parent 37b885d commit dcca49a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ unidecode >= 1.0.*
hic2cool >= 0.4.*
scikit-learn >= 0.20.*
psutil >= 5.4.8
hicmatrix >= 5
hicmatrix >= 5
pygenometracks >= 2.1
31 changes: 17 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,24 @@ def checkProgramIsInstalled(self, program, args, where_to_download,
sys.stderr.write("Error: {}".format(e))


install_requires_py = ["numpy == 1.13.*",
"scipy == 1.0.*",
"matplotlib == 2.1.*",
"pysam >= 0.11.2",
install_requires_py = ["numpy >= 1.15.*",
"scipy >= 1.1.*",
"matplotlib >= 3.0.*",
"pysam >= 0.14",
"intervaltree == 2.1.*",
"biopython >= 1.68",
"tables == 3.3.*",
"pandas == 0.20.*",
"pyBigWig == 0.3.*",
"six == 1.10.*",
"future == 0.16.*",
"cooler == 0.7.*",
"jinja2 == 2.9.*",
"unidecode == 0.4.*",
"hicmatrix == 2.2"
"biopython >= 1.72",
"tables >= 3.4.*",
"pandas >= 0.23.*",
"pyBigWig >= 0.3.*",
"six >= 1.11.*",
"future >= 0.17.*",
"cooler >= 0.7.11*",
"jinja2 >= 2.10.*",
"unidecode >= 1.0.*",
"hicmatrix >= 5",
"pygenometracks >= 2.1",
"scikit-learn >= 0.20",
"psutil >= 5.4.8"
]

if sys.version_info[0] == 2:
Expand Down

0 comments on commit dcca49a

Please sign in to comment.