diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-09-24 14:34:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 14:34:58 -0400 |
commit | 2a07842ea7b5e0244b550645da708b9f409367be (patch) | |
tree | 906a9ee0bf5017272fdc9cd628096cb286dea21d /semantic_version | |
parent | 39e25c452faa97764938b7a6739bc9065047a426 (diff) | |
download | astroconda-contrib-2a07842ea7b5e0244b550645da708b9f409367be.tar.gz |
Add semantic_version to support py36 build of asdf; update asdf recipe to build. (#562)
Diffstat (limited to 'semantic_version')
-rw-r--r-- | semantic_version/meta.yaml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/semantic_version/meta.yaml b/semantic_version/meta.yaml new file mode 100644 index 0000000..cb5719b --- /dev/null +++ b/semantic_version/meta.yaml @@ -0,0 +1,38 @@ +{% set name = "semantic_version" %} +{% set version = "2.8.2" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" + sha256: "71c716e99086c44d068262b86e4775aa6db7fabee0743e4e33b00fbf6f672585" + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " + +requirements: + host: + - pip + - python + run: + - python + +test: + imports: + - semantic_version + +about: + home: "https://github.com/rbarrois/python-semanticversion" + license: "BSD" + license_family: "BSD" + license_file: "" + summary: "A library implementing the 'SemVer' scheme." + doc_url: "" + dev_url: "" + +extra: + recipe-maintainers: + - your-github-id-here |