-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add napari-update-checker recipe (#28714)
Co-authored-by: jaimergp <[email protected]>
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
- python >={{ python_min }} | ||
- qtpy | ||
- superqt | ||
|
||
test: | ||
imports: | ||
- napari_update_checker | ||
- napari_update_checker.qt_update_checker | ||
commands: | ||
- pip list | ||
- pip check | ||
requires: | ||
- pip | ||
- pyqt | ||
- python {{ python_min }} | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mesa-libGL-devel | ||
xorg-x11-server-Xvfb |