Skip to content

Commit

Permalink
Merge pull request #830 from nextstrain/pin-major-requirement-versions
Browse files Browse the repository at this point in the history
Repin major versions for required and full deps
  • Loading branch information
huddlej authored Jan 21, 2022
2 parents a004d3f + d158b73 commit 23c7b3a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@
package_data = {'augur': ['data/*']},
python_requires = '>={}'.format('.'.join(str(n) for n in min_version)),
install_requires = [
"bcbio-gff >=0.6.0",
"bcbio-gff >=0.6.0, ==0.6.*",
"biopython >=1.67, !=1.77, !=1.78",
"jsonschema >=3.0.0",
"jsonschema >=3.0.0, ==3.*",
"packaging >=19.2",
"pandas >=1.0.0",
"phylo-treetime",
"xopen >=1.0.1"
"pandas >=1.0.0, ==1.*",
"phylo-treetime ==0.8.*",
"xopen >=1.0.1, ==1.*"
],
extras_require = {
'full': [
"cvxopt >=1.1.9",
"matplotlib >=2.0",
"seaborn >=0.9.0"
"cvxopt >=1.1.9, ==1.*",
"matplotlib >=2.0, ==2.*",
"seaborn >=0.9.0, ==0.9.*"
],
'dev': [
"cram >=0.7",
Expand Down

0 comments on commit 23c7b3a

Please sign in to comment.