Skip to content

Commit

Permalink
Add tqdm for progress bars during check command
Browse files Browse the repository at this point in the history
  • Loading branch information
HippocampusGirl committed Feb 8, 2024
1 parent 37a47b1 commit 18b8b9d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ RUN wget --progress=dot:giga -O "/tmp/conda.sh" "https://github.com/conda-forge/
"zstd" \
"parallel" \
"python>=3.11" \
"tqdm" \
"r-base" \
"r-calibrate" \
"bioconductor-geneplotter" \
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
config.allowUnfree = true;
};

python = (pkgs.python311.withPackages (py: with py; [ ]));
python =
(pkgs.python311.withPackages (py: with py; [ tqdm types-tqdm ]));
in {
devShells.default =
pkgs.mkShell { buildInputs = with pkgs; [ python ]; };
Expand Down

0 comments on commit 18b8b9d

Please sign in to comment.