File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ classifiers = [
27
27
" Topic :: Scientific/Engineering :: Bio-Informatics"
28
28
]
29
29
dependencies = [
30
- " six"
30
+ " six" ,
31
+ " setuptools"
31
32
]
32
33
dynamic = [" version" ]
33
34
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ def remove_index():
24
24
os .remove ('data/genes.fasta.fai' )
25
25
except EnvironmentError :
26
26
pass # some tests may delete this file
27
+
28
+ def test_version_issue_206 ():
29
+ import pyfaidx
30
+ assert isinstance (pyfaidx .__version__ , str )
27
31
28
32
def test_build (remove_index ):
29
33
expect_index = ("gi|563317589|dbj|AB821309.1| 3510 114 70 71\n "
@@ -349,4 +353,4 @@ def test_issue_144_no_defline(remove_index):
349
353
with pytest .raises (FastaIndexingError ):
350
354
faidx = Faidx (fasta_path )
351
355
finally :
352
- shutil .rmtree (tmp_dir )
356
+ shutil .rmtree (tmp_dir )
You can’t perform that action at this time.
0 commit comments