Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pydeseq2 to 0.4.12 #51652

Merged
merged 3 commits into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions recipes/pydeseq2/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{% set name = "pydeseq2" %}
{% set version = "0.4.11" %}
{% set version = "0.4.12" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pydeseq2-{{ version }}.tar.gz
sha256: 3eb9ae8fd586c04c03e0fa49f274c2db65d0fad19c91803dda09dccb7aaf598c
sha256: dfe1051bd1639caef8be42761f4aa6e93fee0920bb0c35ef51fb454151644015

build:
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation -vvv
script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
number: 0
run_exports:
- {{ pin_subpackage('pydeseq2', max_pin="x") }}
- {{ pin_subpackage('pydeseq2', max_pin="x.x") }}

requirements:
host:
- python >=3.9
- pip
- setuptools
run:
- python >=3.9
- anndata >=0.8.0
Expand All @@ -34,17 +35,15 @@ requirements:
test:
imports:
- pydeseq2
commands:
- pip check
requires:
- pip

about:
home: https://github.com/owkin/PyDESeq2
summary: A python implementation of DESeq2.
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: https://github.com/owkin/PyDESeq2
doc_url: https://pydeseq2.readthedocs.io/en/latest

extra:
identifiers:
Expand Down