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

adding pulp 2.9.0 #29096

Closed
wants to merge 2 commits into from
Closed
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
43 changes: 43 additions & 0 deletions recipes/PuLP/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{% set name = "PuLP" %}
{% set version = "2.9.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pulp-{{ version }}.tar.gz
sha256: 2e30e6c0ef2c0edac185220e3e53faca62eb786a9bd68465208f05bc63e850f3

build:
entry_points:
- pulptest = pulp.tests.run_tests:pulpTestAll
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.7
- pip
run:
- python >=3.7

test:
imports:
- pulp
commands:
- pip check
- pulptest --help
requires:
- pip

about:
home: https://github.com/coin-or/pulp
summary: PuLP is an LP modeler written in python. PuLP can generate MPS or LP files and call GLPK, COIN CLP/CBC, CPLEX, and GUROBI to solve linear problems.
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- WeilinHuJim
Loading