Fix encoding issues with py-cylp (#32608)

fixes #32607

The package contains character that have encoding
issues with Python 2.7.
This commit is contained in:
Massimiliano Culpo 2022-09-12 10:34:54 +02:00 committed by GitHub
parent cb2cdb7875
commit 34a7df9ea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,9 +9,10 @@
class PyCylp(PythonPackage): class PyCylp(PythonPackage):
"""A Python interface for CLP, CBC, and CGL. """A Python interface for CLP, CBC, and CGL.
CyLP is a Python interface to COIN-ORs Linear and mixed-integer program CyLP is a Python interface to COIN-OR's Linear and mixed-integer program
solvers (CLP, CBC, and CGL). CyLPs unique feature is that you can use it solvers (CLP, CBC, and CGL). CyLP's unique feature is that you can use it
to alter the solution process of the solvers from within Python.""" to alter the solution process of the solvers from within Python.
"""
homepage = "https://github.com/coin-or/cylp" homepage = "https://github.com/coin-or/cylp"
pypi = "cylp/cylp-0.91.5.tar.gz" pypi = "cylp/cylp-0.91.5.tar.gz"