summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Rendina <rendinam@users.noreply.github.com>2019-09-24 14:34:58 -0400
committerGitHub <noreply@github.com>2019-09-24 14:34:58 -0400
commit2a07842ea7b5e0244b550645da708b9f409367be (patch)
tree906a9ee0bf5017272fdc9cd628096cb286dea21d
parent39e25c452faa97764938b7a6739bc9065047a426 (diff)
downloadastroconda-contrib-2a07842ea7b5e0244b550645da708b9f409367be.tar.gz
Add semantic_version to support py36 build of asdf; update asdf recipe to build. (#562)
-rw-r--r--asdf/meta.yaml8
-rw-r--r--semantic_version/meta.yaml38
2 files changed, 43 insertions, 3 deletions
diff --git a/asdf/meta.yaml b/asdf/meta.yaml
index b6f56d0..9215e7d 100644
--- a/asdf/meta.yaml
+++ b/asdf/meta.yaml
@@ -1,5 +1,5 @@
{% set name = 'asdf' %}
-{% set version = '2.3.3' %}
+{% set version = '2.4.0' %}
{% set number = '0' %}
about:
@@ -19,18 +19,20 @@ requirements:
build:
- semantic_version >=2.3.1
- pyyaml >=3.10
- - jsonschema >=2.3,<=2.6
+ - jsonschema >=2.3,<4.0
- six >=1.9.0
- setuptools
+ - setuptools_scm
- numpy {{ numpy }}
- python {{ python }}
run:
- semantic_version >=2.3.1
- pyyaml >=3.10
- - jsonschema >=2.3,<=2.6
+ - jsonschema >=2.3,<4.0
- pytest
- six >=1.9.0
- setuptools
+ - setuptools_scm
- numpy
- python
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