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 moments to 1.3.0 #53126

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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: 1 addition & 1 deletion recipes/moments/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

$PYTHON -m pip install .
$PYTHON -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv
25 changes: 16 additions & 9 deletions recipes/moments/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
{% set name="moments" %}
{% set version="1.1.16" %}
{% set name = "moments" %}
{% set version = "1.3.0" %}

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

source:
url: https://github.com/MomentsLD/moments/archive/refs/tags/v{{ version }}.tar.gz
sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
sha256: bf80c2525b396d5806f7a536bcdcb9b5156e16cf85a35026c7d930cac31011da

build:
number: 5
number: 0
run_exports:
- {{ pin_subpackage(name, max_pin="x") }}

requirements:
build:
- {{ compiler('c') }}
- pkgconfig
host:
- pip
- python
- pkgconfig
- numpy
- scipy
- numpy ==1.12.1 # [py == 36]
- numpy ==1.15.4 # [py == 37]
- numpy ==1.17.5 # [py == 38]
- numpy ==1.19.5 # [py == 39]
- numpy ==1.22.3 # [py == 310]
- numpy # [py >= 311]
- cython
run:
- python
- numpy
- {{ pin_compatible('numpy') }}
- scipy
- mpmath
- demes
Expand All @@ -38,7 +42,10 @@ test:
about:
home: https://github.com/MomentsLD/moments
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'Evolutionary inference using SFS and LD statistics.'
dev_url: https://github.com/MomentsLD/moments

extra:
additional-platforms:
Expand Down
Loading