Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pyscipopt 5.0.0 #45

Merged
merged 3 commits into from
Mar 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{% set version = "4.4.0" %}
{% set version = "5.0.0" %}

package:
name: pyscipopt
version: {{ version }}

source:
url: https://github.com/scipopt/PySCIPOpt/archive/v{{ version }}.tar.gz
sha256: 5d3733abb2e7183db383cbb63dc8064ea855acec1468d3cf7148bdaf36b4ad6b
sha256: 2109b24c81887523b2cde1cb450af3ae5b8e2e96604234c255315fab3cada6be

build:
number: 1
number: 0
script: '"${PYTHON}" -m pip install --no-deps .' # [unix]
script: '"%PYTHON%" -m pip install --no-deps .' # [win]

requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython <3 # [build_platform != target_platform]
- cython >=3 # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
host:
- scip >=8.1, <8.2
- scip >=9
- python
- pip
- cython >=0.29.21, <3
- cython >=3
run:
- python

Expand Down