py-multiqc: add v1.23 (#45325)

This commit is contained in:
Vlad Savelyev 2024-07-31 21:16:21 +02:00 committed by GitHub
parent f1140055d0
commit 5541a184d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,13 +15,11 @@ class PyMultiqc(PythonPackage):
pypi = "multiqc/multiqc-1.0.tar.gz"
license("GPL-3.0-only", checked_by="A_N_Other")
maintainers("ewels", "vladsavelyev")
version("1.21", sha256="63bc87e251dbf788dcc8a45e58482ea09b26d05957bf50c77c684d5f0972a495")
version("1.15", sha256="ce5359a12226cf4ce372c6fdad142cfe2ae7501ffa97ac7aab544ced4db5ea3c")
version("1.14", sha256="dcbba405f0c9521ed2bbd7e8f7a9200643047311c9619878b81d167300149362")
version("1.13", sha256="0564fb0f894e6ca0822a0f860941b3ed2c33dce407395ac0c2103775d45cbfa0")
version("1.23", sha256="4e84664000fec69a0952a0457a8d780dcc1ce9e36d14680dbdba5610b9766265")
# dependency defintions move from setup.py to pyproject.toml as of @1.21:
# dependency defintions move from setup.py to pyproject.toml as of @1.23:
# build deps
depends_on("py-setuptools", type="build")
@ -34,7 +32,6 @@ class PyMultiqc(PythonPackage):
depends_on("py-jinja2@2.9:", type=("build", "run"), when="@:1.13")
depends_on("py-kaleido", type=("build", "run"), when="@1.20:")
depends_on("py-markdown", type=("build", "run"), when="@1.3:")
depends_on("py-matplotlib@2.1.1:", type=("build", "run"), when="@1.13:")
depends_on("py-numpy", type=("build", "run"))
depends_on("py-packaging", type=("build", "run"), when="@1.16:")
depends_on("py-requests", type=("build", "run"), when="@1.3:")
@ -49,10 +46,5 @@ class PyMultiqc(PythonPackage):
depends_on("py-coloredlogs", type=("build", "run"), when="@1.13:")
depends_on("py-spectra@0.0.10:", type=("build", "run"), when="@1.4:")
depends_on("py-spectra", type=("build", "run"), when="@1.18:")
# retired run deps
depends_on("py-future@0.14.1:", type=("build", "run"), when="@1.13:1.19")
depends_on("py-lzstring", type=("build", "run"), when="@:1.16")
depends_on("py-networkx@2.5.1:", type=("build", "run"), when="@1.13:1.20")
depends_on("py-networkx@:1", type=("build", "run"), when="@1.3")
depends_on("py-simplejson", type=("build", "run"), when="@:1.15")
depends_on("py-typeguard", type=("build", "run"), when="@1.23:")
depends_on("py-tqdm", type=("build", "run"), when="@1.23:")