diff options
author | George Hartzell <hartzell@alerce.com> | 2019-01-29 15:58:56 -0800 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-01-29 17:58:56 -0600 |
commit | f878c0cb5be8bc247ab85cffdacdcd6a9e1342f1 (patch) | |
tree | 094db392cdc400ec4bfff3d81f7f18214505adcd | |
parent | b2c2cbadcda1394025605c317e2eb9c2b5b200ba (diff) | |
download | spack-f878c0cb5be8bc247ab85cffdacdcd6a9e1342f1.tar.gz spack-f878c0cb5be8bc247ab85cffdacdcd6a9e1342f1.tar.bz2 spack-f878c0cb5be8bc247ab85cffdacdcd6a9e1342f1.tar.xz spack-f878c0cb5be8bc247ab85cffdacdcd6a9e1342f1.zip |
Add configparser v3.5.1, fixes backports namespace (#10433)
Fixes #8343 #4154 #7370
Closes #4155
All but one of the backports packages were using "pkgutil-style"
namespacing, but configparser was using "pkg_resource-style".
A namespace needs to be one style or another. This adds a new
configparser version which switches to using the pkgutil-style
namespace approach.
With this update, one can now install flake8 with Spack and use
it by loading modules.
-rw-r--r-- | var/spack/repos/builtin/packages/py-configparser/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-configparser/package.py b/var/spack/repos/builtin/packages/py-configparser/package.py index 229889408e..1830fd74c6 100644 --- a/var/spack/repos/builtin/packages/py-configparser/package.py +++ b/var/spack/repos/builtin/packages/py-configparser/package.py @@ -13,6 +13,7 @@ class PyConfigparser(PythonPackage): homepage = "https://docs.python.org/3/library/configparser.html" url = "https://pypi.io/packages/source/c/configparser/configparser-3.5.0.tar.gz" + version('3.5.1', sha256='f41e19cb29bebfccb1a78627b3f328ec198cc8f39510c7c55e7dfc0ab58c8c62') version('3.5.0', 'cfdd915a5b7a6c09917a64a573140538') depends_on('py-setuptools', type='build') |