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 scipy-stubs #28397

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
47 changes: 47 additions & 0 deletions recipes/scipy-stubs/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "scipy-stubs" %}
{% set version = "1.14.1.4" %}
{% set python_min = "3.10" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/scipy_stubs-{{ version }}.tar.gz
sha256: 215a2c9d865e355a5c5cc088ec6d87f489a584396256113d72d7d24cfb0e889c

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python {{ python_min }}
- poetry-core
- pip
run:
- python >={{ python_min }},<4.0.0
- optype >=0.7.1
run_constrained:
- scipy >=1.10

test:
imports:
- scipy_stubs
commands:
- pip check
requires:
- python {{ python_min }}
- pip

about:
home: https://github.com/jorenham/scipy-stubs/
summary: Typing Stubs for SciPy
license: BSD-3-Clause
license_file: LICENSE

extra:
recipe-maintainers:
- lucascolley
- jorenham
Loading