diff options
author | James Davies <jdavies@stsci.edu> | 2020-03-24 09:57:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 09:57:29 -0400 |
commit | b018fc0072bd83be18be85cc9614af085920d776 (patch) | |
tree | 35058fc03aab00f90ef8db1d28fc5ad8d9ff176e /specutils/meta.yaml | |
parent | 06abb787cb590f504f32b7449a8ff449e838b23c (diff) | |
download | astroconda-contrib-b018fc0072bd83be18be85cc9614af085920d776.tar.gz |
Add asdf to package dependencies (#630)
* Add asdf to package dependencies
It has always been a dependency (since the `AsdfExtension` was added) but has been pulled in via `gwcs`. It is now a package dependency in `setup.cfg` and needs to be reflected here as well.
* Update meta.yaml
Update build number
Co-authored-by: Joseph Hunkeler <jhunkeler@users.noreply.github.com>
Diffstat (limited to 'specutils/meta.yaml')
-rw-r--r-- | specutils/meta.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/specutils/meta.yaml b/specutils/meta.yaml index 07c3152..bef6d1f 100644 --- a/specutils/meta.yaml +++ b/specutils/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'specutils' %} {% set version = '1.0' %} {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/astropy/specutils @@ -22,6 +22,7 @@ source: requirements: build: + - asdf - astropy - scipy - gwcs @@ -30,6 +31,7 @@ requirements: - numpy {{ numpy }} - python {{ python }} run: + - asdf - astropy - scipy - gwcs |