From 12076f630d3a4764e5b4756951c642a35c9bb0f4 Mon Sep 17 00:00:00 2001 From: Felix Wiegand Date: Tue, 17 Sep 2024 11:53:53 +0200 Subject: [PATCH] perf: Update utils/datavzrd (#3248) ### QC * [x] I confirm that I have followed the [documentation for contributing to `snakemake-wrappers`](https://snakemake-wrappers.readthedocs.io/en/stable/contributing.html). While the contributions guidelines are more extensive, please particularly ensure that: * [ ] `test.py` was updated to call any added or updated example rules in a `Snakefile` * [ ] `input:` and `output:` file paths in the rules can be chosen arbitrarily * [ ] wherever possible, command line arguments are inferred and set automatically (e.g. based on file extensions in `input:` or `output:`) * [ ] temporary files are either written to a unique hidden folder in the working directory, or (better) stored where the Python function `tempfile.gettempdir()` points to * [ ] the `meta.yaml` contains a link to the documentation of the respective tool or command under `url:` * [ ] conda environments use a minimal amount of channels and packages, in recommended ordering ## Summary by CodeRabbit - **New Features** - Upgraded the `datavzrd` package to version `2.42.0`, which may include new features and improvements. - **Bug Fixes** - Potential bug fixes and performance enhancements from the updated `datavzrd` version. --- utils/datavzrd/environment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/datavzrd/environment.yaml b/utils/datavzrd/environment.yaml index 65df991c39..7512a1b1f7 100644 --- a/utils/datavzrd/environment.yaml +++ b/utils/datavzrd/environment.yaml @@ -2,5 +2,5 @@ channels: - conda-forge - nodefaults dependencies: - - datavzrd =2.41.3 + - datavzrd =2.42.0 - yte =1.5.4