Skip to content
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: 1 addition & 1 deletion .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
cdt_name:
- cos7
- conda
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
- quay.io/condaforge/linux-anvil-x86_64:alma9
python_min:
- '3.9'
17 changes: 9 additions & 8 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 27 additions & 2 deletions azure-pipelines.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 13 additions & 3 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,21 @@ package:
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 92a5445ea7eb29c9b181e15e70d569bcb3872a10bbda01c5b6d1f60dbc44d5f7

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

requirements:
host:
- python >=3.6
- python {{ python_min }}
- pip
- setuptools
run:
- python >=3.6
- python >={{ python_min }}
- numpy
- scipy
- pandas
Expand All @@ -43,8 +44,12 @@ test:
- yasa
requires:
- pip
- python {{ python_min }}
commands:
- pip check
- python -c "import yasa; print(yasa.__version__)"
# Disabled until sleepecg->wfdb->pysoundfile is fixed
# https://github.com/conda-forge/pysoundfile-feedstock/pull/24
# - pip check -vvv

about:
home: https://raphaelvallat.com/yasa
Expand Down