Skip to content

Commit

Permalink
Merge pull request #27913 from SwayamInSync/numpy_quaddtype
Browse files Browse the repository at this point in the history
Adding numpy_quaddtype package
  • Loading branch information
ocefpaf authored Oct 19, 2024
2 parents bbe5ecd + dc2c003 commit a3bcc26
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions recipes/numpy_quaddtype/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{% set name = "numpy_quaddtype" %}
{% set version = "0.0.9" %}

package:
name: {{ name }}
version: {{ version }}

source:
url: https://github.com/SwayamInSync/numpy-user-dtypes/archive/refs/tags/quaddtype-v{{ version }}.tar.gz
sha256: 57be7d7d848994f02809013920a8c712d495dd995a2d5a1be0fec76f51e2f45f

build:
number: 0
skip: True # [py<310 or py>=313]
script: |
cd quaddtype
{{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ stdlib("c") }}
- python
- pip
- meson
- meson-python
- setuptools
- sleef ==3.6.1
- numpy >=2.0
host:
- python
- pip
- setuptools
- meson
- meson-python
- sleef ==3.6.1
- numpy >=2.0
run:
- python
- sleef ==3.6.1
- numpy >=2.0

test:
imports:
- numpy_quaddtype
requires:
- numpy >=2.0
- pytest
source_files:
- quaddtype/tests
commands:
- pytest -s quaddtype/tests

about:
home: https://github.com/numpy/numpy-user-dtypes
summary: "Quad (128-bit) float dtype for numpy"
license: BSD-3-Clause
license_file: LICENSE

extra:
recipe-maintainers:
- SwayamInSync

0 comments on commit a3bcc26

Please sign in to comment.