mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00
Enforce Pip installs under Python 3.6
This commit is contained in:
parent
5853113e90
commit
e3439a9af8
1 changed files with 4 additions and 6 deletions
|
@ -63,13 +63,7 @@ install:
|
|||
- ps: Get-Location
|
||||
- bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && ls -alh"
|
||||
|
||||
# Install Python modules
|
||||
- ps: python -m pip install --upgrade pip
|
||||
# - ps: python -m pip install --upgrade packager
|
||||
- ps: python -m pip install --upgrade pyinstaller
|
||||
|
||||
# Install NPM modules
|
||||
# - bash -e -l -c "cd /C/Tridactyl && npm install -g windows-build-tools"
|
||||
- bash -e -l -c "cd $APPVEYOR_BUILD_FOLDER && npm install"
|
||||
|
||||
build_script:
|
||||
|
@ -78,6 +72,10 @@ build_script:
|
|||
- ps: $env:PATH = "C:\Python36-x64;$env:PATH"
|
||||
- ps: Copy-Item -Path "C:\Python36-x64\Python.exe" -Destination "C:\Python36-x64\Python3.exe"
|
||||
|
||||
# Install Python modules under Python 3.6
|
||||
- ps: python -m pip install --upgrade pip
|
||||
- ps: python -m pip install --upgrade pyinstaller
|
||||
|
||||
# Change to build directory and verify CWD
|
||||
- ps: Set-Location -Path $env:APPVEYOR_BUILD_FOLDER
|
||||
- ps: Write-Host "[+] Current working directory is ..."
|
||||
|
|
Loading…
Add table
Reference in a new issue