diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-02-03 19:56:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-03 19:56:40 -0500 |
commit | 5cb4d7eed9e6d6a904559c5114d9a959df830df3 (patch) | |
tree | 5f17c2cb09be360e0551ca3821473403e265cc89 | |
parent | e8dd084411e17d554b7a724003a183291d95e3e0 (diff) | |
download | astroconda-contrib-5cb4d7eed9e6d6a904559c5114d9a959df830df3.tar.gz |
Add missing python requirement (#698)
-rw-r--r-- | sphinx-automodapi/meta.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx-automodapi/meta.yaml b/sphinx-automodapi/meta.yaml index 3e87b00..7b18910 100644 --- a/sphinx-automodapi/meta.yaml +++ b/sphinx-automodapi/meta.yaml @@ -1,5 +1,6 @@ {% set name = "sphinx-automodapi" %} {% set version = "0.10" %} +{% set number = "1" %} package: name: "{{ name|lower }}" @@ -10,13 +11,13 @@ source: sha256: 5c989bfe37f555f635e8fbb650859df391556981f5a436507fb3241794fd26c6 build: - number: 0 + number: {{ number }} script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " requirements: host: - pip - - python + - python {{ python }} - sphinx >=1.3 run: - python |