File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ dist-posix: package-deps
122
122
123
123
.PHONY : dist-osx
124
124
dist-osx : package-deps
125
- $(builder ) --mac
125
+ $(builder ) --mac --x64
126
126
$(MAKE ) _dist-collect-artifacts
127
127
128
128
.PHONY : dist-linux
Original file line number Diff line number Diff line change @@ -118,7 +118,16 @@ module.exports = function beforeBuild(context) {
118
118
119
119
// TODO(mc, 2022-05-16): explore virtualenvs for a more reliable
120
120
// implementation of this install
121
- return execa ( HOST_PYTHON , [
121
+ console . log (
122
+ `Installing python native deps using ${ path . join (
123
+ PYTHON_DESTINATION ,
124
+ 'python3.10'
125
+ ) } `
126
+ )
127
+ const invokablePython = platformName . includes ( 'darwin' )
128
+ ? path . join ( PYTHON_DESTINATION , 'python/bin/python3.10' )
129
+ : HOST_PYTHON
130
+ return execa ( invokablePython , [
122
131
'-m' ,
123
132
'pip' ,
124
133
'install' ,
You can’t perform that action at this time.
0 commit comments