This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
71 lines (63 loc) · 1.63 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
{% set name = "osqp" %}
{% set version = "0.6.3" %}
package:
name: "{{ name|lower }}"
version: {{ version }}
source:
- url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 03e460e683ec2ce0f839353ddfa3c4c8ffa509ab8cf6a2b2afbb586fa453e180
patches:
- patches/0001-win-paradiso-lib.patch
build:
number: 1
script: "{{ PYTHON }} -m pip install . -vv"
script_env:
- CMAKE_GENERATOR='Visual Studio 16 2019' # [win]
- CMAKE_GENERATOR='Ninja' # [not win]
- CMAKE_GENERATOR_PLATFORM='x64' # [win]
requirements:
build:
- {{ compiler('c') }}
- cmake
- ninja # [not win]
host:
- python
- pip
- mkl-devel {{ mkl }} # [blas_impl == "mkl"]
- openblas-devel # [blas_impl == "openblas"]
- numpy
- setuptools_scm
- qdldl
run:
- python
- {{ pin_compatible('numpy') }}
- scipy >=0.13.2
- qdldl
- future
test:
imports:
- osqp
- osqp.codegen
- osqp.tests
- osqppurepy
requires:
- packaging
- pytest
- pyyaml
script: run_test.sh # [unix]
script: run_test.bat # [win]
about:
home: https://osqp.org/
license: Apache 2.0
license_family: APACHE
license_file: LICENSE
summary: 'Python interface for OSQP, the Operator Splitting QP Solver'
description: |
Python interface for OSQP, the Operator Splitting QP Solver.
To use the `codegen` interface, install `cmake` and an appropriate
compiler version. (We don't install this by default.)
doc_url: https://osqp.org/
dev_url: http://github.com/oxfordcontrol/osqp-python
extra:
recipe-maintainers:
- dougalsutherland