Skip to content

Commit e9f7d03

Browse files
committed
make sure submodule is added in the correct location
1 parent 79808da commit e9f7d03

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "/lib/spack/spack/util/python_recipe_parser"]
2-
path = /lib/spack/spack/util/python_recipe_parser
3-
url = https://github.com/karenyyng/spack_python_package_parser
1+
[submodule "lib/spack/spack/util/python_recipe_parser"]
2+
path = lib/spack/spack/util/python_recipe_parser
3+
url = git@github.com:karenyyng/spack_python_package_parser.git
Submodule python_recipe_parser added at 6777dd9

var/spack/packages/py-astropy/package.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class PyAstropy(Package):
77
url="https://pypi.python.org/packages/source/a/astropy/astropy-0.4.2.tar.gz")
88

99
extends("python")
10+
depends_on("py-numpy")
1011

1112
def install(self, spec, prefix):
1213
python("setup.py", "install", "--prefix=%s" % prefix)

var/spack/packages/py-jsonschema/package.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ class PyJsonschema(Package):
1111

1212
extends("python")
1313
depends_on("[email protected]")
14+
depends_on("py-vcversioner")
15+
depends_on("py-functools32")
1416

1517
def install(self, spec, prefix):
1618
python('setup.py', 'install', '--prefix=%s' % prefix)

0 commit comments

Comments
 (0)