File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ sdk_packages = [
2222if sys .version_info .major == 3 :
2323 sdk_packages .extend (["django-ask-sdk" , "ask-sdk-local-debug" ])
2424
25- run ("pip install coverage" )
25+ run ("python -m pip install coverage" )
2626
2727for pkg in sdk_packages :
2828 os .chdir (os .path .join (REPO_ROOT , pkg ))
29- run ("pip install -r requirements.txt" )
29+ run ("python -m pip install -r requirements.txt" )
3030 if os .path .isdir ('dist' ) and os .listdir ('dist' ):
3131 shutil .rmtree ('dist' )
3232 run ('python setup.py bdist_wheel' )
3333 wheel_dist = os .listdir ('dist' )[0 ]
34- run ('pip install %s' % (os .path .join ('dist' , wheel_dist )))
34+ run ('python -m pip install %s' % (os .path .join ('dist' , wheel_dist )))
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ setenv =
2626 AWS_DEFAULT_REGION = us-west-2
2727commands =
2828 flake8 .
29- pip install --upgrade pip
30- pip install --upgrade wheel
29+ python -m pip install --upgrade pip
30+ python -m pip install --upgrade wheel
3131 {toxinidir}/scripts/ci/sdk_install
3232 {toxinidir}/scripts/ci/run_tests
3333 py{36,37,38}: mypy ask-sdk/ask_sdk
@@ -53,8 +53,8 @@ setenv =
5353 AWS_DEFAULT_REGION = us-west-2
5454commands =
5555 flake8 .
56- pip install --upgrade pip
57- pip install --upgrade wheel
56+ python -m pip install --upgrade pip
57+ python -m pip install --upgrade wheel
5858 python {toxinidir}\scripts\ci\sdk_install
5959 python {toxinidir}\scripts\ci\run_tests
6060 mypy ask-sdk\ask_sdk
You can’t perform that action at this time.
0 commit comments