diff options
author | Nicholas Earl <contact@nicholasearl.me> | 2018-12-06 17:39:33 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-12-06 17:39:33 -0500 |
commit | b1b30c377985afe4061306bdde39ac132cec844c (patch) | |
tree | b825acbcdb318fa7fa843380b37337371824d3e5 /specviz | |
parent | b3acf1438b8c8c61af77db04c4d4a5e3574d2da7 (diff) | |
download | astroconda-contrib-b1b30c377985afe4061306bdde39ac132cec844c.tar.gz |
Update specviz version (#433)
* Update specviz version
* Update version number
* Fix recipe
* Lowercased package names
* Adjusted pyqt5 -> pyqt. Version floor dropped to >=5.9 (5.11 does not exist in main)
* Update asteval to match specviz requirements
Diffstat (limited to 'specviz')
-rw-r--r-- | specviz/meta.yaml | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/specviz/meta.yaml b/specviz/meta.yaml index 6e1b9c8..d4898fe 100644 --- a/specviz/meta.yaml +++ b/specviz/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'specviz' %} -{% set version = '0.5.0' %} +{% set version = '0.6.1' %} {% set tag = 'v' + version %} {% set number = '0' %} @@ -16,44 +16,43 @@ source: requirements: build: - - astropy - - cython - - docopt - - specutils <=0.2.2 - - py-expression-eval - - pyyaml - - pyqtgraph >=0.9.11 - - pyqt - - qtpy - - scipy - - spectral-cube - - yaml - - setuptools - - six + - asdf>=2.3.0 + - asteval>=0.9.13 + - astropy>=3.0.5 + - click>=7.0 + - gwcs>=0.9.1 + - pyqt>=5.9 + - pyqtgraph>=0.10.0 + - pytest>=4.0.1 + - pyyaml>=3.13 + - qtawesome>=0.5.3 + - qtpy>=1.5.2 + - scipy>=1.1.0 + - specutils>=0.5.1 - numpy {{ numpy }} - python {{ python }} run: - - astropy - - cython - - docopt - - specutils <=0.2.2 - - py-expression-eval - - pyyaml - - pyqtgraph >=0.9.11 - - pyqt - - qtpy - - scipy - - spectral-cube - - yaml - - six - - numpy + - asdf>=2.3.0 + - asteval>=0.9.13 + - astropy>=3.0.5 + - click>=7.0 + - gwcs>=0.9.1 + - numpy>=1.15.4 + - pyqt>=5.9 + - pyqtgraph>=0.10.0 + - pytest>=4.0.1 + - pyyaml>=3.13 + - qtawesome>=0.5.3 + - qtpy>=1.5.2 + - scipy>=1.1.0 + - specutils>=0.5.1 - python test: requires: - - astropy - - specutils <=0.2.2 + - astropy >=3.0.5 + - specutils >=0.5.1 imports: - specviz |