-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmeta.yaml
117 lines (106 loc) · 3.01 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{% set name = "cylc-flow" %}
{% set version = "8.4.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: d3a6c644f1be8564131794f885f616aa31d68f8ed4887872b070ac8933f64936
build:
number: 0
noarch: python
requirements:
host:
- __unix
- pip
- python {{ python_min }}
- setuptools
run:
- __unix
- python >={{ python_min }}
test:
requires:
- python {{ python_min }}
files:
- tests/simple-datetime/flow.cylc
imports:
- cylc.flow
commands:
- cylc --version
- cylc version --long
- cylc get-resources job.sh # check packaging of non-python files
- cylc help licence # check packaging of licence file
- cylc validate ./tests/simple-datetime
outputs:
# base package with only required dependencies
- name: {{ name }}-base
build:
script: python -m pip install . --no-deps --ignore-installed -vv
noarch: python
requirements:
host:
- __unix
- pip
- python {{ python_min }}
- setuptools
run:
- __unix
- python >={{ python_min }}
- ansimarkup >=1.0.0
- async-timeout >=3.0.0
- colorama >=0.4,<1.0
- graphene >=2.1,<3
- jinja2 >=3.0,<3.1
- metomi-isodatetime >=1!3.0.0, <1!3.2.0
- packaging
- protobuf >=4.24.4,<4.25.0
- psutil >=5.6.0
- pyzmq >=22
- importlib_metadata >=5.0 # py<3.12 TODO: selectors don't work for noarch packages
- urwid >=2,<3,!=2.6.2,!=2.6.3
# non-pinned transitive dependencies used for type checking
- rx
- promise
- tomli >=2.0 # py<3.11 TODO: selectors don't work for noarch packages
# full package with all dependencies installed
# (excluding tests, developer extensions, etc)
- name: {{ name }}
build:
script: python -m pip install .[report-timings,tutorials,graph] --no-deps --ignore-installed -vv
noarch: python
requirements:
host:
- __unix
- pip
- python {{ python_min }}
- setuptools
run:
- __unix
- python >={{ python_min }}
- {{ pin_subpackage(name + "-base", exact=True) }}
# Dependencies for the `pip install` command above:
# static graphing
- graphviz
- pillow
# report-timings
- pandas >=1.0,<2
- matplotlib-base
# tutorials
- requests
about:
home: https://cylc.org/
license: GPL-3.0-only
license_family: GPL
license_file: LICENSE.txt
summary: A workflow engine for cycling systems
description: |
Cylc ("silk") is a workflow engine for cycling systems - it orchestrates
distributed workflows of interdependent cycling tasks that may continue to
run indefinitely.
doc_url: https://cylc.github.io/cylc-doc/
dev_url: https://github.com/cylc/cylc-flow
extra:
recipe-maintainers:
- MetRonnie
- hjoliver
- oliver-sanders