diff options
author | Dan D'Avella <ddavella@stsci.edu> | 2019-03-12 12:59:03 -0400 |
---|---|---|
committer | Matt Rendina <rendinam@users.noreply.github.com> | 2019-03-12 12:59:03 -0400 |
commit | 450fe39bc78d47aeaff3ed91ae40f72085d546b3 (patch) | |
tree | ec8668df9b481ab0c55b9cff8686f4fcfc3b6694 | |
parent | 59e04f465a0d9e1b909afb8d79e67d9289a4058e (diff) | |
download | astroconda-dev-450fe39bc78d47aeaff3ed91ae40f72085d546b3.tar.gz |
Fix asdf dependencies. Reflect jsonschema<=2.6 (#187)
-rw-r--r-- | asdf/meta.yaml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/asdf/meta.yaml b/asdf/meta.yaml index a6fd632..1f1d6cd 100644 --- a/asdf/meta.yaml +++ b/asdf/meta.yaml @@ -19,23 +19,19 @@ package: requirements: build: - - astropy - - pyyaml - - jsonschema - - pytest - - semantic_version >=2.6.0 - - six + - semantic_version >=2.3.1 + - pyyaml >=3.10 + - jsonschema >=2.3,<=2.6 + - six >=1.9.0 - setuptools - numpy {{ numpy }} - python {{ python }} - run: - - astropy - - pyyaml - - jsonschema + - semantic_version >=2.3.1 + - pyyaml >=3.10 + - jsonschema >=2.3,<=2.6 - pytest - - semantic_version >=2.6.0 - - six + - six >=1.9.0 - setuptools - numpy - python |