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 pgenlib to 0.91.0 and enable arm64/aarch64 builds #50220

Merged
merged 1 commit into from
Aug 21, 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
18 changes: 11 additions & 7 deletions recipes/pgenlib/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{% set name = "pgenlib" %}
{% set version = "0.90.2" %}
{% set version = "0.91.0" %}

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

source:
url: "https://pypi.io/packages/source/P/Pgenlib/Pgenlib-{{ version }}.tar.gz"
sha256: 09825be43ffb25bc68b6e243b98989a5bc35a8aa22cd749fd9f602d778dd6bd0
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 32992274214d2e6735b721544abfd0ae0c76906c4193120f7091065b88f68dfa

build:
number: 1
number: 0
script: "{{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation"
run_exports:
- {{ pin_subpackage('pgenlib', max_pin="x.x") }}
Expand All @@ -21,12 +21,13 @@ requirements:
host:
- python
- pip
- cython
- numpy
- cython
- numpy >=2.0.0 # [py >= 39]
- numpy # [py < 39]
- zlib
run:
- python
- {{ pin_compatible('numpy') }}
- numpy >=1.19.0

test:
imports:
Expand All @@ -46,3 +47,6 @@ extra:
- chrchang
identifiers:
- doi:10.1186/s13742-015-0047-8
additional-platforms:
- linux-aarch64
- osx-arm64