Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-14, macos-15-intel, macos-26]
os: [ubuntu-latest, windows-latest, macos-14, macos-26]
env-type: [pip]
include:
- os: macos-14
llvm: llvm@15
- os: macos-15-intel
llvm: llvm@18
- os: macos-26
llvm: llvm@20
steps:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-14, macos-15-intel, macos-26]
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-14, macos-26]
include:
- os: macos-14
llvm: llvm@15
macos_deployment_target: "14.0"
- os: macos-15-intel
llvm: llvm@18
macos_deployment_target: "15.0"
- os: macos-26
llvm: llvm@20
macos_deployment_target: "26.0"
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/wheels_testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-14, macos-15-intel, macos-latest]
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-14, macos-26]
include:
- os: macos-14
llvm: llvm@15
- os: macos-15-intel
llvm: llvm@18
- os: macos-15-latest
llvm: llvm@18
- os: macos-26
llvm: llvm@20
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions docs/source/install/install_mac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ used during the build process:

.. code-block:: bash

export CC=/opt/homebrew/opt/gcc/bin/gcc-15
export CXX=/opt/homebrew/opt/gcc/bin/g++-15
export CC=$(brew --prefix gcc)/bin/gcc-15
export CXX=$(brew --prefix gcc)/bin/g++-15

You might need to change the number at the end depending on which version of
``gcc`` you have installed.
Expand All @@ -128,8 +128,8 @@ used during the build process:

.. code-block:: bash

export CC=/opt/homebrew/opt/llvm/bin/clang
export CXX=/opt/homebrew/opt/llvm/bin/clang++
export CC=$(brew --prefix llvm)/bin/clang
export CXX=$(brew --prefix llvm)/bin/clang++

Clone and Install the Github Repository
=======================================
Expand Down
17 changes: 16 additions & 1 deletion src/pyvale/verif/pointsens.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"""

import numpy as np
import platform
import pyvale.mooseherder as mh
import pyvale.sensorsim as sens
import pyvale.dataio as io
Expand Down Expand Up @@ -103,11 +104,25 @@ def check_gold_measurements(sens_dict: dict[str,sens.SensorsPoint],
atol: float = 1e-5) -> list[str]:
fails = []

MACOS_GOLD_CASES = {
"scal2d_analytic_nomesh",
"scal3d_nomesh",
"vec2d_analytic_nomesh",
"tens2d_analytic_nomesh",
}

for ss in sens_dict:
measurements = sens_dict[ss].sim_measurements()
gold_path = pointsensconst.GOLD_PATH / f"{ss}.npy"

load_path = pointsensconst.GOLD_PATH / f"{ss.lower()}.npy"
print(ss.lower())

if (any(case in ss.lower() for case in MACOS_GOLD_CASES) and (platform.system()=='Darwin')):
load_path = (pointsensconst.GOLD_PATH / "macos" / f"{ss.lower()}.npy")
else:
load_path = (pointsensconst.GOLD_PATH / f"{ss.lower()}.npy")


if load_path.is_file():
gold = np.load(load_path)

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading