Skip to content

Commit

Permalink
version bump on requirements #216
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Apr 4, 2024
1 parent 04abc1f commit 5413eec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
default_pipestat_output_schema,
result_formatter_markdown,
)
from pipestat.helpers import read_yaml_data
from yacman import load_yaml

__all__ = ["PipelineManager"]

Expand Down Expand Up @@ -1828,7 +1828,7 @@ def _refresh_stats(self):
"""

if os.path.isfile(self.pipeline_stats_file):
_, data = read_yaml_data(path=self.pipeline_stats_file, what="stats_file")
data = load_yaml(filepath=self.pipeline_stats_file)

for key, value in data[self._pipestat_manager.pipeline_name][
self._pipestat_manager.pipeline_type
Expand Down
3 changes: 2 additions & 1 deletion pypiper/ngstk.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ def get_file_size(self, filenames):
return sum([self.get_file_size(filename) for filename in filenames])

return round(
sum([float(os.stat(f).st_size) for f in filenames.split(" ")]) / (1024**2),
sum([float(os.stat(f).st_size) for f in filenames.split(" ")])
/ (1024**2),
4,
)

Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ mkdocs>=1.0
markdown-include
pydoc-markdown
piper
pipestat>=0.6.0
pipestat>=0.9.0a1
https://github.com/databio/mkdocs-databio/archive/master.zip
6 changes: 3 additions & 3 deletions requirements/requirements-pypiper.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
logmuse>=0.2.4
psutil
pandas
ubiquerg>=0.4.5
yacman
pipestat>=0.6.0
ubiquerg>=0.8.0
yacman>=0.9.3
pipestat>=0.9.0a1

0 comments on commit 5413eec

Please sign in to comment.