From 842497256696ce213aa3d4cf0499792b7744d5e4 Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 12:48:29 +0000 Subject: [PATCH 1/7] adding repytah to fork --- recipes/repytah/meta.yaml | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 recipes/repytah/meta.yaml diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml new file mode 100644 index 0000000000000..aeea4841bc92e --- /dev/null +++ b/recipes/repytah/meta.yaml @@ -0,0 +1,49 @@ +{% set name = "repytah" %} +{% set version = "0.1.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/repytah-{{ version }}.tar.gz + sha256: a4b7e1c1634d007572e4af036fde67cf6f098839664f79bbfebded2f9b2993be + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.7,<4.0 + - setuptools >=61.0 + - pip + run: + - python >=3.7,<4.0 + - numpy >=1.21.6 + - scipy >=1.7.3 + - pandas >=1.3.5 + - matplotlib-base >=3.3.4 + - opencv >=4.5.0 + - setuptools >=61.2.0 + +test: + imports: + - repytah + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/smith-tinkerlab/repytah + summary: Python package for building Aligned Hierarchies for sequential data streams + dev_url: https://github.com/smith-tinkerlab/repytah + doc_url: https://repytah.readthedocs.io/ + license: ISC + license_file: LICENSE.md + +extra: + recipe-maintainers: + - kmkinnaird From fb1839b566c7cb6c511ffadfbae7f5080f4b8792 Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 12:56:32 +0000 Subject: [PATCH 2/7] adding changes to meta.yaml --- recipes/repytah/meta.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml index aeea4841bc92e..58fa5696a612b 100644 --- a/recipes/repytah/meta.yaml +++ b/recipes/repytah/meta.yaml @@ -35,6 +35,11 @@ test: - pip check requires: - pip + - pytest + source_files: + - test + commands: + - pytest test about: home: https://github.com/smith-tinkerlab/repytah From 5ccf9099ff485076dbf46b3e3bee434c0693c361 Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 14:19:19 +0000 Subject: [PATCH 3/7] using different version of opencv to address Docker fail --- recipes/repytah/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml index 58fa5696a612b..603138cd3f4ae 100644 --- a/recipes/repytah/meta.yaml +++ b/recipes/repytah/meta.yaml @@ -25,7 +25,7 @@ requirements: - scipy >=1.7.3 - pandas >=1.3.5 - matplotlib-base >=3.3.4 - - opencv >=4.5.0 + - opencv-headless >=4.5.0 - setuptools >=61.2.0 test: From aa6e0aa32228540a953b21e7541c165147285def Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 14:36:55 +0000 Subject: [PATCH 4/7] using different version of opencv to address Docker fail again --- recipes/repytah/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml index 603138cd3f4ae..6db161924211c 100644 --- a/recipes/repytah/meta.yaml +++ b/recipes/repytah/meta.yaml @@ -25,7 +25,7 @@ requirements: - scipy >=1.7.3 - pandas >=1.3.5 - matplotlib-base >=3.3.4 - - opencv-headless >=4.5.0 + - opencv-headless - setuptools >=61.2.0 test: From e3c4dfad91e3dd0d8a761466b99a9a386a3902af Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 15:21:20 +0000 Subject: [PATCH 5/7] reverting changes --- recipes/repytah/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml index 6db161924211c..58fa5696a612b 100644 --- a/recipes/repytah/meta.yaml +++ b/recipes/repytah/meta.yaml @@ -25,7 +25,7 @@ requirements: - scipy >=1.7.3 - pandas >=1.3.5 - matplotlib-base >=3.3.4 - - opencv-headless + - opencv >=4.5.0 - setuptools >=61.2.0 test: From ca45b3f68ea60b083709019d9a5496ac8f81059b Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Fri, 17 Feb 2023 15:48:17 +0000 Subject: [PATCH 6/7] adding yum_req file --- recipes/repytah/yum_requirements.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 recipes/repytah/yum_requirements.txt diff --git a/recipes/repytah/yum_requirements.txt b/recipes/repytah/yum_requirements.txt new file mode 100644 index 0000000000000..c73bbf0fe8145 --- /dev/null +++ b/recipes/repytah/yum_requirements.txt @@ -0,0 +1 @@ +mesa-libGL-devel \ No newline at end of file From c8fd0f7c6eaf83e621816991120064c4ef77db42 Mon Sep 17 00:00:00 2001 From: "Katherine M. Kinnaird" Date: Sat, 18 Feb 2023 13:14:47 +0000 Subject: [PATCH 7/7] removing package unit tests from yaml tests --- recipes/repytah/meta.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/recipes/repytah/meta.yaml b/recipes/repytah/meta.yaml index 58fa5696a612b..aeea4841bc92e 100644 --- a/recipes/repytah/meta.yaml +++ b/recipes/repytah/meta.yaml @@ -35,11 +35,6 @@ test: - pip check requires: - pip - - pytest - source_files: - - test - commands: - - pytest test about: home: https://github.com/smith-tinkerlab/repytah