diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-09-12 10:34:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 10:34:54 +0200 |
commit | 34a7df9ea05a39b1a53d16baad2a1f35c430b011 (patch) | |
tree | 5b541a677ec4a9ba0002e9cef6fbeb54a36062bc | |
parent | cb2cdb7875fd2b0941e75b0acaa0aa4997833dc5 (diff) | |
download | spack-34a7df9ea05a39b1a53d16baad2a1f35c430b011.tar.gz spack-34a7df9ea05a39b1a53d16baad2a1f35c430b011.tar.bz2 spack-34a7df9ea05a39b1a53d16baad2a1f35c430b011.tar.xz spack-34a7df9ea05a39b1a53d16baad2a1f35c430b011.zip |
Fix encoding issues with py-cylp (#32608)
fixes #32607
The package contains character that have encoding
issues with Python 2.7.
-rw-r--r-- | var/spack/repos/builtin/packages/py-cylp/package.py | 7 |
1 files 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 b3d96d686a..9218a44e90 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 @@ from spack.package import * 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" |