
Remove support for `cray` as a separate platform. Any platform previously detected as `cray` is now detected as `linux`. Users who still need platform=cray have to stick to Spack 0.22
15 lines
570 B
Python
15 lines
570 B
Python
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
from ._operating_system import OperatingSystem
|
|
from .freebsd import FreeBSDOs
|
|
from .linux_distro import LinuxDistro
|
|
from .mac_os import MacOs
|
|
from .windows_os import WindowsOs
|
|
|
|
__all__ = ["OperatingSystem", "LinuxDistro", "MacOs", "WindowsOs", "FreeBSDOs"]
|
|
|
|
#: List of all the Operating Systems known to Spack
|
|
operating_systems = [LinuxDistro, MacOs, WindowsOs, FreeBSDOs]
|