From 34a7df9ea05a39b1a53d16baad2a1f35c430b011 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Mon, 12 Sep 2022 10:34:54 +0200 Subject: [PATCH] Fix encoding issues with py-cylp (#32608) fixes #32607 The package contains character that have encoding issues with Python 2.7. --- var/spack/repos/builtin/packages/py-cylp/package.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/var/spack/repos/builtin/packages/py-cylp/package.py b/var/spack/repos/builtin/packages/py-cylp/package.py index b3d96d686a3..9218a44e906 100644 --- a/var/spack/repos/builtin/packages/py-cylp/package.py +++ b/var/spack/repos/builtin/packages/py-cylp/package.py @@ -9,9 +9,10 @@ class PyCylp(PythonPackage): """A Python interface for CLP, CBC, and CGL. - CyLP is a Python interface to COIN-OR’s Linear and mixed-integer program - 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.""" + CyLP is a Python interface to COIN-OR's Linear and mixed-integer program + 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. + """ homepage = "https://github.com/coin-or/cylp" pypi = "cylp/cylp-0.91.5.tar.gz"