Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nci-openmpi: do not rely on implicit import of spack.package #64

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/nci-openmpi/package.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Adapted from https://github.com/spack/spack/blob/v0.20.0/var/spack/repos/builtin/packages/openmpi/package.py
## Scott Wales 2023
# Adapted from https://github.com/spack/spack/blob/v0.20.0/var/spack/repos/builtin/packages/openmpi/package.py
# Scott Wales 2023
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *

class NciOpenmpi(Package):
"""
Expand All @@ -14,6 +15,8 @@ class NciOpenmpi(Package):
externals:
- spec: [email protected]
prefix: /apps/openmpi/4.1.4
modules:
- openmpi/4.1.4
buildable: False
"""

Expand Down
Loading