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 kinex to 1.1.0 #51570

Merged
merged 3 commits into from
Oct 28, 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
14 changes: 8 additions & 6 deletions recipes/kinex/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
{% set name = "kinex" %}
{% set version = "1.0.2" %}
{% set version = "1.1.0" %}

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

source:
url: "https://github.com/bedapub/{{ name }}/archive/v{{ version }}.tar.gz"
sha256: ec9809bf7f401a064824d4883ef2877d945e65b7eb1e6f10b160590b515f4553
sha256: 43dbcabe85fa5c4a593949ffd02887722b94d9285fa01e8bd0ed0a8e7998fa02

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

requirements:
host:
- pip
- python >=3.8,<=3.11
- python >=3.8
- setuptools
run:
- python >=3.8,<=3.11
- python >=3.8
- scipy >=1.10.0
- numpy >=1.19.5
- nbformat >=4.2.0
Expand All @@ -40,8 +41,9 @@ test:
about:
home: "https://github.com/bedapub/kinex"
license: GPL-3.0-only
license_family: GPL3
license_file: LICENSE
summary: "Kinex infers causal kinases from phosphoproteomics data"
summary: "Kinex infers causal kinases from phosphoproteomics data."
doc_url: "https://kinex.readthedocs.io/en/latest/"
dev_url: "https://github.com/bedapub/kinex"

Expand Down