Skip to content

Commit

Permalink
specify delocate==0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-urban committed Jul 5, 2024
1 parent c96cd6d commit df8abe0
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-package-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ jobs:
include:
- os: "macos-11"
arch: "arch -x86_64"
deployment_target: "11.0"
deployment_target: "12.0"
- os: "macos-12"
arch: "arch -x86_64"
deployment_target: "12.0"
deployment_target: "13.0"
- os: "macos-13"
arch: "arch -x86_64"
deployment_target: "13.0"
deployment_target: "14.0"
# - os: "macos-14"
# arch: "arch -arm64"
# deployment_target: "14.0"

env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deployment_target }}
#env:
# MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deployment_target }}

steps:
- name: Echo MACOSX_DEPLOYMENT_TARGET
Expand All @@ -81,7 +81,7 @@ jobs:
python-version: ${{matrix.python-version}}

- name: Checkout main repository
uses: actions/checkout@v4
uses: actions/checkout@v4
with:
submodules: recursive
lfs: false
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Install dependencies (pip)
run: |
${{matrix.arch}} pip install --upgrade pip
${{matrix.arch}} pip install meson meson-python ninja pytest twine wheel delocate
${{matrix.arch}} pip install meson meson-python ninja pytest twine wheel delocate==0.10
${{matrix.arch}} pip install -r requirements.txt
- name: Debug pip
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Simple gridder class that can create quantitative 3D images from x,z,y,val from some custom data.
"""
from __future__ import annotations
import numpy as np
import numpy
import numpy as np
from themachinethatgoesping.gridding.functions import gridfunctions as grdf
import typing
__all__ = ['ArrayLike', 'ForwardGridder', 'grdf', 'np']
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations
import numpy as np
import numpy
import numpy as np
from themachinethatgoesping.algorithms import geoprocessing as gp
import themachinethatgoesping.algorithms.geoprocessing.datastructures
from themachinethatgoesping import echosounders as es
Expand Down
2 changes: 1 addition & 1 deletion subprojects/algorithms
Submodule algorithms updated 2 files
+1 −1 meson.build
+1 −1 src/meson.build
2 changes: 1 addition & 1 deletion subprojects/echosounders
2 changes: 1 addition & 1 deletion subprojects/gridding
Submodule gridding updated 1 files
+1 −1 meson.build
2 changes: 1 addition & 1 deletion subprojects/meta
Submodule meta updated from c78e99 to b16bc3
2 changes: 1 addition & 1 deletion subprojects/navigation
Submodule navigation updated 2 files
+1 −1 meson.build
+1 −1 src/meson.build
2 changes: 1 addition & 1 deletion subprojects/pingprocessing
2 changes: 1 addition & 1 deletion subprojects/tools
Submodule tools updated 2 files
+7 −5 meson.build
+1 −1 src/meson.build

0 comments on commit df8abe0

Please sign in to comment.