Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing setuptools dependency in v0.7.2 #207

Merged
merged 5 commits into from
Feb 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"six"
"six",
"setuptools"
]
dynamic = ["version"]

Expand Down
6 changes: 5 additions & 1 deletion tests/test_feature_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ def remove_index():
os.remove('data/genes.fasta.fai')
except EnvironmentError:
pass # some tests may delete this file

def test_version_issue_206():
import pyfaidx
assert isinstance(pyfaidx.__version__, str)

def test_build(remove_index):
expect_index = ("gi|563317589|dbj|AB821309.1| 3510 114 70 71\n"
Expand Down Expand Up @@ -349,4 +353,4 @@ def test_issue_144_no_defline(remove_index):
with pytest.raises(FastaIndexingError):
faidx = Faidx(fasta_path)
finally:
shutil.rmtree(tmp_dir)
shutil.rmtree(tmp_dir)