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

ensure numpy 2 compat #4

Merged
merged 3 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions abs.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +0,0 @@
build_env_vars:
ANACONDA_ROCKET_ENABLE_PY313 : yes
14 changes: 7 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{% set name = "contourpy" %}
{% set version = "1.3.1" %}
{% set version = "1.2.1" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/contourpy-{{ version }}.tar.gz
sha256: dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699
sha256: 4d8908b3bee1c889e547867ca4cdc54e5ab6be6d3e078556814a22457f49423c

build:
number: 0
skip: true # [py<310]
number: 1
skip: true # [py<39]
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
missing_dso_whitelist: # [s390x]
- $RPATH/ld64.so.1 # [s390x]
Expand All @@ -21,10 +21,10 @@ requirements:
- {{ compiler('cxx') }}
host:
- pip
- meson >=1.2.0
- pybind11 >=2.13.2,!=2.13.3
- meson ==1.2.1
- meson-python ==0.13.1
- pybind11 ==2.10.4
- python
- meson-python >=0.13.1
run:
- python
- numpy >=1.23
Expand Down