We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0854220 commit 200bcc0Copy full SHA for 200bcc0
2 files changed
.github/workflows/test-python.yml
@@ -60,6 +60,10 @@ jobs:
60
with:
61
mongodb-version: 4.4
62
mongodb-replica-set: test-rs
63
+ - name: Install CMake 3 on MacOS
64
+ if: ${{ startsWith(runner.os, 'macOS') }}
65
+ run: |
66
+ brew install cmake@3
67
- name: Start MongoDB on MacOS
68
if: ${{ startsWith(runner.os, 'macOS') }}
69
run: |
bindings/python/build-libbson.sh
@@ -3,9 +3,6 @@
3
set -o xtrace
4
set -o errexit
5
6
-cmake --version
7
-exit 1
8
-
9
# Version of libbson to build
10
# Keep in sync with pymongoarrow.version._MIN_LIBBSON_VERSION
11
LIBBSON_VERSION=${LIBBSON_VERSION:-"1.23.1"}
0 commit comments