File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -1568,7 +1568,7 @@ axes:
1568
1568
variables :
1569
1569
skip_EC2_auth_test : true
1570
1570
skip_ECS_auth_test : true
1571
- python3_binary : python3
1571
+ python3_binary : /Library/Frameworks/Python.framework/Versions/3.8/bin/ python3
1572
1572
libmongocrypt_url : https://s3.amazonaws.com/mciuploads/libmongocrypt/macos/master/latest/libmongocrypt.tar.gz
1573
1573
- id : rhel62
1574
1574
display_name : " RHEL 6.2 (x86_64)"
Original file line number Diff line number Diff line change 39
39
# show test output
40
40
set -x
41
41
42
- VIRTUALENV=$( command -v virtualenv)
42
+ # Workaround macOS python 3.9 incompatibility with system virtualenv.
43
+ if [ $( uname -s) = " Darwin" ]; then
44
+ VIRTUALENV=" /Library/Frameworks/Python.framework/Versions/3.9/bin/python3 -m virtualenv"
45
+ else
46
+ VIRTUALENV=$( command -v virtualenv)
47
+ fi
43
48
44
49
authtest () {
45
50
if [ " Windows_NT" = " $OS " ]; then
You can’t perform that action at this time.
0 commit comments