Skip to content

Commit

Permalink
fix: Update environment.yaml of MultiQC (#1873)
Browse files Browse the repository at this point in the history
<!-- Ensure that the PR title follows conventional commit style (<type>:
<description>)-->
<!-- Possible types are here:
https://github.com/commitizen/conventional-commit-types/blob/master/index.json
-->

### Description

<!-- Add a description of your PR here-->
Python version is fixed to versions<3.12.0 to handle dependency on
imp-module, which is not available in newer python versions.
The imp module is [deprecated in favor of importlib, and removed from
the standard library since python version
3.12.0](https://docs.python.org/3.11/library/imp.html). Thus, depending
on the python version your program-call/conda-environment is using, you
will encounter a `ModuleNotFoundError` Error.

For further information, see discussion on StackOverflow:
https://stackoverflow.com/questions/77273344/multiqc-snakemake-wrapper-modulenotfounderror-no-module-named-imp

---------

Co-authored-by: Filipe G. Vieira <1151762+fgvieira@users.noreply.github.com>
  • Loading branch information
KuechlerO and fgvieira committed Oct 18, 2023
1 parent d55ed6a commit bcd4a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bio/multiqc/environment.yaml
Expand Up @@ -3,4 +3,4 @@ channels:
- bioconda
- nodefaults
dependencies:
- multiqc =1.16
- multiqc =1.17

0 comments on commit bcd4a24

Please sign in to comment.