Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cellfinder-core v0.5.1 #17

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "cellfinder-core" %}
{% set version = "0.5.0" %}
{% set version = "0.5.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/cellfinder-core-{{ version }}.tar.gz
sha256: d4baa7d97b082937d9ead3f6a4ab3912118cf911ea72ea14a57ed7fdb3fb0c2b
sha256: 31a4f04f014634b35e5188986ec90fc58d656f924ccff1c03400fa3a95716bc3

build:
noarch: python
Expand All @@ -21,7 +21,7 @@ requirements:
host:
- pip
- python >=3.8, <3.11
- setuptools_scm
- setuptools-scm
run:
- dask
- fancylog >=0.0.7
Expand All @@ -32,13 +32,13 @@ requirements:
- python >=3.8, <3.11
- scikit-image
- scikit-learn
- scipy
- tifffile
- tqdm
- __unix # [unix]
- tensorflow >=2.5.0, <2.12.0 # [unix]
- __win # [win]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jaimergp I do not recall the usage of these selectors. Do you remember the rationale for them? 🤔

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this is what you're thinking of, but the selectors are there because of our move to a noarch package.

We still need to work around issues with tensorflow's availability at runtime (or rather, it's non-availability on windows), which is why the # [unix] and # [win] selectors are now present in the recipe.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the heads up :)



test:
imports:
- cellfinder_core # [unix]
Expand Down