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.
This commit is contained in:
parent
b2c2cbadcd
commit
f878c0cb5b
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ class PyConfigparser(PythonPackage):
|
||||||
homepage = "https://docs.python.org/3/library/configparser.html"
|
homepage = "https://docs.python.org/3/library/configparser.html"
|
||||||
url = "https://pypi.io/packages/source/c/configparser/configparser-3.5.0.tar.gz"
|
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')
|
version('3.5.0', 'cfdd915a5b7a6c09917a64a573140538')
|
||||||
|
|
||||||
depends_on('py-setuptools', type='build')
|
depends_on('py-setuptools', type='build')
|
||||||
|
|
Loading…
Reference in a new issue