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

add recipe for quickbin #28853

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
46 changes: 46 additions & 0 deletions recipes/quickbin/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{% set name = "quickbin" %}
{% set version = "0.2.0" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/quickbin-{{ version }}.tar.gz
sha256: 21246a61b653490e69ebef712978d7167d5ec9412f4d414c3da325750433dd3f

build:
skip: true # [py<311 or win]
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
build:
- {{ stdlib('c') }}
- {{ compiler('c') }}
host:
- python
- setuptools
- numpy
- pip
run:
- python

test:
imports:
- quickbin
commands:
- pip check
requires:
- pip
- setuptools

about:
home: https://github.com/millionconcepts/quickbin
summary: fast generalized histogram function
license: BSD-3-Clause
license_file: LICENSE.md

extra:
recipe-maintainers:
- m-stclair