summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMassimiliano Culpo <massimiliano.culpo@gmail.com>2022-09-12 10:34:54 +0200
committerGitHub <noreply@github.com>2022-09-12 10:34:54 +0200
commit34a7df9ea05a39b1a53d16baad2a1f35c430b011 (patch)
tree5b541a677ec4a9ba0002e9cef6fbeb54a36062bc /var
parentcb2cdb7875fd2b0941e75b0acaa0aa4997833dc5 (diff)
downloadspack-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.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cylp/package.py7
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"