From 36d7fda1da35efaa640ee823e49f0ad735c05e69 Mon Sep 17 00:00:00 2001 From: guillaumecharbonnier Date: Sat, 20 Oct 2018 18:43:09 +0200 Subject: [PATCH] Hmmlearn older version (#11450) * Adding pygtftk * removed pygtftk from master * add older version of hmmlearn --- recipes/hmmlearn/0.1.1/build.sh | 2 ++ recipes/hmmlearn/0.1.1/meta.yaml | 37 ++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 recipes/hmmlearn/0.1.1/build.sh create mode 100644 recipes/hmmlearn/0.1.1/meta.yaml diff --git a/recipes/hmmlearn/0.1.1/build.sh b/recipes/hmmlearn/0.1.1/build.sh new file mode 100644 index 0000000000000..89481145a5291 --- /dev/null +++ b/recipes/hmmlearn/0.1.1/build.sh @@ -0,0 +1,2 @@ +#!/bin/bash +$PYTHON setup.py install --single-version-externally-managed --record=record.txt diff --git a/recipes/hmmlearn/0.1.1/meta.yaml b/recipes/hmmlearn/0.1.1/meta.yaml new file mode 100644 index 0000000000000..c26245059cc97 --- /dev/null +++ b/recipes/hmmlearn/0.1.1/meta.yaml @@ -0,0 +1,37 @@ +package: + name: hmmlearn + version: '0.1.1' + +source: + url: https://github.com/hmmlearn/hmmlearn/archive/0.1.1.tar.gz + sha256: 307233053218a71fea714d6c9d160e6d6579752c6264200f411a17917add4d25 + +build: + number: 0 + skip: True # [osx] + +requirements: + host: + - python >=2.7,<3 + - setuptools + - cython + - numpy + - scipy + - scikit-learn <0.20 + + run: + - python >=2.7,<3 + - setuptools + - numpy + - scipy + - scikit-learn <0.20 + +test: + imports: + - hmmlearn.hmm + +about: + home: https://github.com/hmmlearn/hmmlearn + license: BSD + summary: Hidden Markov Models in Python, with scikit-learn like API +