Skip to content

Commit 0b26db8

Browse files
authored
Merge pull request #127 from PMCC-BioinformaticsCore/release-v0.12.1
Release v0.12.1
2 parents e25e354 + e833098 commit 0b26db8

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
matrix:
11-
python-version: [3.6, 3.7, 3.8]
10+
python-version: [3.8.17, 3.10.12, 3.11.4]
1211

1312
steps:
1413
- uses: actions/checkout@v2

janis_bioinformatics/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "v0.11.4"
1+
__version__ = "v0.12.1"
22
description = "Bioinformatics tools for Janis; the Pipeline creation helper"

janis_bioinformatics/tools/bcftools/view/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def memory(self, hints: Dict[str, Any]):
9292
def inputs(self) -> List[ToolInput]:
9393
return [
9494
ToolInput("file", CompressedVcf(), position=2),
95-
ToolInput("outputFilename", Filename, prefix=">", position=5)
95+
ToolInput("outputFilename", Filename, prefix=">", position=5),
9696
* self.additional_inputs,
9797
]
9898

janis_bioinformatics/tools/common/indexfasta.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ def constructor(self):
114114
)
115115
self.output("out_dict", source=self.create_dict, output_name="reference")
116116

117+
def skip_test(cls) -> bool:
118+
return True
119+
117120
def bind_metadata(self):
118121
return ToolMetadata(
119122
contributors=["Michael Franklin"],

janis_bioinformatics/tools/pmac/circosplot/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ def cpus(self, hints: Dict[str, Any]):
9797
return val
9898
return 1
9999

100+
def skip_test(cls) -> bool:
101+
return True
102+
100103
def bind_metadata(self) -> ToolMetadata:
101104
from datetime import datetime
102105

tests/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import collections
2+
collections.Callable = collections.abc.Callable

0 commit comments

Comments
 (0)