Rename py-pytables -> py-tables (#11847)

This commit is contained in:
Adam J. Stewart 2019-06-25 20:32:49 -05:00 committed by Elizabeth Fischer
parent ef48219f15
commit 5c5d6cad44
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ class Partitionfinder(Package):
depends_on('python@2.7.10:2.999', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-pandas', type=('build', 'run'))
depends_on('py-pytables', type=('build', 'run'))
depends_on('py-tables', type=('build', 'run'))
depends_on('py-pyparsing', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-scikit-learn', type=('build', 'run'))

View File

@ -27,5 +27,5 @@ class PySfepy(PythonPackage):
depends_on('py-matplotlib', type='run')
depends_on('py-sympy', type='run')
depends_on('hdf5+hl', type='run')
depends_on('py-pytables', type='run')
depends_on('py-tables', type='run')
depends_on('py-petsc4py', type='run', when='+petsc')

View File

@ -6,7 +6,7 @@
from spack import *
class PyPytables(PythonPackage):
class PyTables(PythonPackage):
"""PyTables is a package for managing hierarchical datasets and designed to
efficiently and easily cope with extremely large amounts of data."""
homepage = "http://www.pytables.org/"