Skip to content

Commit d120cf1

Browse files
committed
bump version to 0.6.8
1 parent 50d0d04 commit d120cf1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# eg: 1.0.0, 1.0.1, 3.0.2, 5.0-beta, etc.
2121
# You CANNOT upload two versions of your package with the same version number
2222
# This field is REQUIRED
23-
version="0.6.7",
23+
version="0.6.8",
2424

2525
# The packages that constitute your project.
2626
# For my project, I have only one - "pydash".

tests/test_writer_loader.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@ def test_write_load_batched_target_bam(self):
112112
)
113113
seq, chrom, target, label = next(iter(ds))
114114
self.assertEqual(seq.shape, (2, 128, 4, 5))
115+
## iterate through all samples
116+
it = iter(ds)
117+
while True:
118+
try:
119+
next(it)
120+
except StopIteration:
121+
break
115122

116123
def test_write_load_target_bam(self):
117124
coords = pd.DataFrame({

0 commit comments

Comments
 (0)