Skip to content

Commit

Permalink
Don't allow python 3.9, due to a bug with pyvcf
Browse files Browse the repository at this point in the history
  • Loading branch information
Redmar-van-den-Berg committed Mar 11, 2022
1 parent 17db546 commit 2badc6f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def read(*names, **kwargs):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
# uncomment if you test on these interpreters:
# 'Programming Language :: Python :: Implementation :: IronPython',
# 'Programming Language :: Python :: Implementation :: Jython',
Expand All @@ -61,7 +60,7 @@ def read(*names, **kwargs):
keywords=[
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* !=3.9.*",
install_requires=[
"pyvcf == 0.6.8"
],
Expand Down

0 comments on commit 2badc6f

Please sign in to comment.