|
| 1 | +{% set version = "0.33-dev" %} |
| 2 | + |
1 | 3 | package:
|
2 | 4 | name: larray-editor
|
3 |
| - version: 0.33-dev |
| 5 | + version: {{ version }} |
4 | 6 |
|
5 | 7 | source:
|
6 |
| - git_tag: 0.33-dev |
| 8 | + git_tag: {{ version }} |
7 | 9 | git_url: https://github.com/larray-project/larray-editor.git
|
8 |
| -# git_tag: master |
9 |
| -# git_url: file://c:/Users/gdm/devel/larray-editor/.git |
10 | 10 |
|
11 | 11 | build:
|
12 |
| - # If this is a new build for the same version, increment the build number |
| 12 | + noarch: python |
13 | 13 | number: 0
|
14 |
| - # this is not used since we provide explicit build scripts (bld.bat and build.sh) |
15 |
| -# script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv" |
16 | 14 | entry_points:
|
17 | 15 | - larray-editor = larray_editor.start:main
|
18 | 16 |
|
19 | 17 | requirements:
|
20 |
| - build: |
21 |
| - - pip |
| 18 | + host: |
22 | 19 | - python
|
| 20 | + - pip |
23 | 21 |
|
24 |
| -# requires larray >= 0.32 because of the LArray -> Array rename |
25 | 22 | run:
|
26 | 23 | - python
|
| 24 | + # requires larray >= 0.32 because of the LArray -> Array rename |
27 | 25 | - larray >=0.32
|
28 | 26 | - matplotlib
|
29 |
| - - ipykernel !=5.0, !=5.1 |
| 27 | + # - excluded versions 5.0 and 5.1.0 of ipykernel because these versions make the console useless after any exception |
| 28 | + # https://github.com/larray-project/larray-editor/issues/166 |
| 29 | + - ipykernel !=5.0,!=5.1.0 |
30 | 30 | - pyqt >=4.6 # for API v2
|
31 | 31 | - qtpy
|
32 | 32 |
|
33 | 33 | test:
|
34 |
| -# requires: |
35 |
| -# - pytest |
36 |
| -# - pytest-runner |
37 |
| - |
38 | 34 | imports:
|
39 | 35 | - larray_editor
|
40 | 36 |
|
41 |
| -# commands: |
42 |
| -# # You can also put a file called run_test.py in the recipe that will be run at test time. |
43 |
| -# - pytest --pyargs larray_editor |
44 |
| - |
45 | 37 | app:
|
46 | 38 | entry: larray-editor
|
47 |
| - # I can't seem to make this work |
48 | 39 | # icon: larray.png
|
49 |
| - summary: Graphical User Interface for LArray |
| 40 | + summary: "Graphical User Interface for LArray" |
50 | 41 | type: desk
|
51 | 42 |
|
52 | 43 | about:
|
53 | 44 | home: https://github.com/larray-project/larray-editor
|
54 |
| - license: GPL-3.0 |
| 45 | + license: GPL-3.0-only |
55 | 46 | license_family: GPL
|
56 | 47 | license_file: LICENSE
|
57 |
| - summary: Graphical User Interface for LArray |
| 48 | + summary: "Graphical User Interface for LArray" |
| 49 | + dev_url: https://github.com/larray-project/larray-editor |
58 | 50 |
|
59 | 51 | extra:
|
60 | 52 | recipe-maintainers:
|
61 | 53 | - alixdamman
|
62 | 54 | - gdementen
|
63 |
| - |
64 |
| -# See |
65 |
| -# https://conda.io/docs/user-guide/tasks/build-packages/index.html |
66 |
| -# for more information about meta.yaml |
0 commit comments