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 scoring-matrices recipe to use new scikit-build-core build #51533

Merged
merged 1 commit into from
Oct 22, 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
16 changes: 9 additions & 7 deletions recipes/scoring-matrices/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
{% set name = "scoring-matrices" %}
{% set module = "scoring_matrices" %}
{% set version = "0.2.2" %}
{% set version = "0.3.0" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 2192df3f5f8ecd144071858cc287c958d2a842cdc8cc082c13755dfefe2f66b8
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ module }}-{{ version }}.tar.gz"
sha256: 0eba50087f65f752cb7ac3c20f58cbbae6650ed923c3c48070245b64bdebb3cb

build:
number: 1
skip: True # [py < 36]
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir --use-pep517 -vvv"
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}

requirements:
build:
- {{ compiler('c') }}
- 'cmake >=3.20'
- make
host:
- python
- 'python >=3.7'
- pip
- cython
- scikit-build-core
run:
- python
- 'python >=3.7'

test:
imports:
Expand Down