blob: fa8ec8c2159e36b4d858c5ff7381c20816e7901e (
plain) (
blame)
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
|
{% set version = '1.1.22' %}
{% set tag = 'v' + version %}
{% set number = '0' %}
package:
name: gemini_calmgr
version: {{ version }}
source:
git_url: git@github.com:GeminiDRSoftware/GeminiCalMgr.git
git_tag: {{ tag }}
build:
number: {{ number }}
noarch: python
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vv
about:
home: http://www.gemini.edu/sciops/data-and-results/processing-software
license: BSD
license_file: LICENSE
summary: Local calibration manager for use with DRAGONS
requirements:
build:
- python >=3.7
- pip
- setuptools
run:
- python >=3.7
- dragons >=3.1.0
- gemini_obs_db >=1.0
- sqlalchemy >=1.3,<2.0.0a0 # code not yet updated for new v2 API
|