Skip to content

Commit 78d2db5

Browse files
committed
Fix nightly build syntax error
1 parent 223ee99 commit 78d2db5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/daily-test-build-numpy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
# 11.7 necessary due to: https://github.com/actions/setup-python/issues/682#issuecomment-1604261330
3535
#MACOSX_DEPLOYMENT_TARGET: "10.15"
36-
MACOSX_DEPLOYMENT_TARGET: "${{ matrix.os == 'macos-11' && python-version in ['3.7', '3.8'] && '11.7' || '10.15' }}"
36+
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-11' && contains(fromJson('["3.7", "3.8"]'), matrix.python-version) && '11.7' || '10.15' }}
3737
steps:
3838
- name: Checkout TileDB-Py `dev`
3939
uses: actions/checkout@v2
@@ -69,7 +69,6 @@ jobs:
6969

7070
- name: Test without pandas
7171
run: python -m pip uninstall -y pandas
72-
if: ${{ matrix.uninstall_pandas }}
7372

7473
- name: Build TileDB-Py
7574
run: |

0 commit comments

Comments
 (0)