From 93dc500f41f47c331f933f9efbf92b39d21cc3d8 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Mon, 26 Sep 2022 11:36:49 +0200 Subject: [PATCH] py-pkgutil-resolve-name: fix issue with UTF-8 character This modifications breaks `develop` since it doesn't pass audits with Python 2.7 It is to be investigated why audits pass in CI for the PR and the issue is revealed only when the package is pushed to develop. --- .../repos/builtin/packages/py-pkgutil-resolve-name/package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/py-pkgutil-resolve-name/package.py b/var/spack/repos/builtin/packages/py-pkgutil-resolve-name/package.py index 274e98828c8..68c300636fa 100644 --- a/var/spack/repos/builtin/packages/py-pkgutil-resolve-name/package.py +++ b/var/spack/repos/builtin/packages/py-pkgutil-resolve-name/package.py @@ -7,7 +7,7 @@ class PyPkgutilResolveName(PythonPackage): - """Resolve a name to an object. A backport of Python 3.9’s `pkgutil.resolve_name`""" + """Resolve a name to an object. A backport of Python 3.9 `pkgutil.resolve_name`""" homepage = "https://github.com/graingert/pkgutil-resolve-name" pypi = "pkgutil_resolve_name/pkgutil_resolve_name-1.3.10.tar.gz"