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

Add napari-update-checker recipe #28714

Merged
merged 10 commits into from
Dec 29, 2024
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
56 changes: 56 additions & 0 deletions recipes/napari-update-checker/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{% set name = "napari-update-checker" %}
{% set version = "0.1.0" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/napari_update_checker-{{ version }}.tar.gz
sha256: e59ee4ed39acb1a14c726873dd93aefe5ee7ab9fd50b931c8d8a101875deac9f

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- napari
- pip
- python {{ python_min }}
- setuptools >=42
- setuptools-scm >=3.4
- wheel
run:
- napari >=0.5
- pip
jaimergp marked this conversation as resolved.
Show resolved Hide resolved
- python >={{ python_min }}
- qtpy
- superqt

test:
imports:
- napari_update_checker
jaimergp marked this conversation as resolved.
Show resolved Hide resolved
- napari_update_checker.qt_update_checker
commands:
- pip list
- pip check
requires:
- pip
- pyqt
- python {{ python_min }}
jaimergp marked this conversation as resolved.
Show resolved Hide resolved
- numpy <2.0a0 # TODO: Remove once python_min is 3.10 or later

about:
home: https://pypi.org/project/napari-update-checker/
dev_url: https://github.com/napari/update-checker/
doc_url: https://napari.org/update-checker
summary: Updates checker plugin for napari.
license: BSD-3-Clause
license_file: LICENSE.txt

extra:
recipe-maintainers:
- goanpeca
- jaimergp
2 changes: 2 additions & 0 deletions recipes/napari-update-checker/yum_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mesa-libGL-devel
xorg-x11-server-Xvfb
Loading