-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Add dask-ms #11321
Add dask-ms #11321
Changes from all commits
58e6e0e
f58b6d1
5cefa2c
49fa79e
26e1137
88b10c6
d8c4cd1
fd70ea6
bd97c29
410f400
8f2bf55
76656e3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% set name = "dask-ms" %} | ||
{% set version = "0.2.4" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: 31537be0fe0c7c82450336600a939d0538d59a670fc3fd4c00b093810226a48a | ||
|
||
build: | ||
skip: true # [win] | ||
number: 0 | ||
script: "{{ PYTHON }} -m pip install . -vv" | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The https://github.com/ska-sa/dask-ms/blob/master/setup.py |
||
- python | ||
- dask >=2.2.0 | ||
- numpy >=1.14.0 | ||
- python-casacore >=3.2.0 | ||
- xarray >0.12.0 | ||
|
||
test: | ||
imports: | ||
- daskms | ||
commands: | ||
- ${PYTHON} -c "from daskms import xds_from_ms" | ||
- ${PYTHON} -c "from daskms import xds_from_table" | ||
- ${PYTHON} -c "from daskms import xds_to_table" | ||
- ${PYTHON} -c "from daskms import TableProxy" | ||
|
||
about: | ||
home: https://github.com/ska-sa/dask-ms | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add a https://github.com/ska-sa/dask-ms/blob/master/setup.py#L45 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for reviewing the setup.py. I've updated it to reflect the BSD license in the pypi classifiers. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note this change will only reflect in the upcoming dask-ms 0.2.4. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks both. I will update this recipe accordingly to see whether it passes the tests. I am also happy to wait for the |
||
license: BSD-3-Clause | ||
license_family: BSD | ||
license_file: LICENSE | ||
summary: 'Implementation of a dask/xarray dataset backed by a CASA MS' | ||
|
||
extra: | ||
recipe-maintainers: | ||
- sebastian-luna-valero | ||
- sjperkins |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think
host
can just includepython
andpip
since the others are run and not build dependencies