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

dask-ms v0.2.22 #20

Merged
merged 11 commits into from
Nov 8, 2024
10 changes: 9 additions & 1 deletion .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
cdt_name:
- cos6
- cos7
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
pin_run_as_build:
python:
min_pin: x.x
max_pin: x.x
python:
- 3.12.* *_cpython
python_min:
- '3.10'
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.

9 changes: 6 additions & 3 deletions build-locally.py

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

2 changes: 2 additions & 0 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python_min:
- "3.10"
26 changes: 14 additions & 12 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "dask-ms" %}
{% set version = "0.2.21" %}
{% set version = "0.2.22" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: 09a3b5823d37cf61bca5a8b03726123ff16cc7c57332b647162ce7f408cd8c91
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: f425ae0454b81436d533dbcf3c18ec0fce6d5013503213ea269d175697a7f69b

build:
number: 0
Expand All @@ -16,20 +16,20 @@ build:

requirements:
host:
- python >=3.8
- python {{ python_min }}
- pip
- poetry-core >=1.0
run:
- appdirs
- donfig
- python >=3.8
- dask >=2023.1.0
- numpy >=1.24.0
- python-casacore >=3.5.1
- s3fs >=2023.1.0
- pyarrow >=14.0.1
- zarr >=2.12.0
- xarray >2023.1.0
- python >={{ python_min }}
- dask >=2024.1.0
- numpy >=2.0.0
- python-casacore >=3.6.1
- s3fs >=2024.1.0
- pyarrow >=16.1.0
- zarr >=2.17.0
- xarray >2024.1.0

test:
imports:
Expand All @@ -39,6 +39,8 @@ test:
- ${PYTHON} -c "from daskms import xds_from_table"
- ${PYTHON} -c "from daskms import xds_to_table"
- ${PYTHON} -c "from daskms import TableProxy"
requires:
- python {{ python_min }}

about:
home: /~https://github.com/ska-sa/dask-ms
Expand Down