Trying to solve Python build on windows (#5649)

This commit is contained in:
Paul Stack 2020-10-30 12:13:59 +00:00 committed by GitHub
parent 5188ec4c9f
commit b2d06daae1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View file

@ -25,8 +25,8 @@ jobs:
platform: [windows-latest]
go-version: [1.15.x]
node-version: [10.x]
python-version: [3.7]
dotnet: ['3.1.301']
python-version: [3.7.x]
dotnet: [3.1.x]
runs-on: ${{ matrix.platform }}
env:
GOPATH: ${{ github.workspace }}
@ -44,7 +44,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python Deps

View file

@ -18,8 +18,8 @@ jobs:
platform: [windows-latest]
go-version: [1.15.x]
node-version: [10.x]
python-version: [3.7]
dotnet: ['3.1.301']
python-version: [3.7.x]
dotnet: [3.1.x]
runs-on: ${{ matrix.platform }}
env:
GOPATH: ${{ github.workspace }}
@ -37,7 +37,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python Deps

View file

@ -23,8 +23,8 @@ jobs:
platform: [windows-latest]
go-version: [1.15.x]
node-version: [10.x]
python-version: [3.7]
dotnet: ['3.1.301']
python-version: [3.7.x]
dotnet: [3.1.x]
runs-on: ${{ matrix.platform }}
env:
GOPATH: ${{ github.workspace }}
@ -42,7 +42,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python Deps

View file

@ -200,7 +200,7 @@
<Target Name="PythonDependencies">
<MakeDir Directories="$(PythonSdkDirectory)\env\src"/>
<Exec Command="pipenv install"
<Exec Command="pipenv --python 3.7 install --dev"
WorkingDirectory="$(PythonSdkDirectory)\env\src" />
</Target>