diff options
author | James Davies <jdavies@stsci.edu> | 2019-03-12 12:49:31 -0400 |
---|---|---|
committer | Matt Rendina <rendinam@users.noreply.github.com> | 2019-03-12 12:49:31 -0400 |
commit | 59e04f465a0d9e1b909afb8d79e67d9289a4058e (patch) | |
tree | 8bc1a2936538775ba67c788ac06ee104d2ecc7d7 | |
parent | ccf7ac1d105583cd96d52ddae6091f0897656a16 (diff) | |
download | astroconda-dev-59e04f465a0d9e1b909afb8d79e67d9289a4058e.tar.gz |
Pin jsonschema <=2.6 (#188)
Conda made a package of `jsonschema 3.0` yesterday and broke the `jwst` package, which really needs `>=2.3,<=2.6`.
```
firewatch -t 2d | grep jsonschema
2019-03-11T16:32:36 : main/osx-64 : jsonschema-3.0.1-py27_0.tar.bz2
2019-03-11T16:40:13 : main/osx-64 : jsonschema-3.0.1-py37_0.tar.bz2
2019-03-11T16:40:45 : main/osx-64 : jsonschema-3.0.1-py36_0.tar.bz2
```
Also, removing 2 dependencies that are no longer needed - `stsci.tools` and `namedlist`.
-rw-r--r-- | jwst/meta.yaml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/jwst/meta.yaml b/jwst/meta.yaml index 264b4f3..2d670c0 100644 --- a/jwst/meta.yaml +++ b/jwst/meta.yaml @@ -26,10 +26,9 @@ requirements: - crds - drizzle - gwcs - - jsonschema + - jsonschema <=2.6 - jplephem - matplotlib - - namedlist - photutils - pymssql - pytest @@ -38,7 +37,6 @@ requirements: - stsci.image - stsci.imagestats - stsci.stimage - - stsci.tools - verhawk - setuptools - numpy {{ numpy }} @@ -50,10 +48,9 @@ requirements: - crds - drizzle - gwcs - - jsonschema + - jsonschema <=2.6 - jplephem - matplotlib - - namedlist - photutils - pymssql - pytest @@ -62,7 +59,6 @@ requirements: - stsci.image - stsci.imagestats - stsci.stimage - - stsci.tools - verhawk - numpy - python |