Build Windows binary with Python 3.8
Stay on 3.8 (instead of 3.9, which was released recently) to stay compatible with Windows 7 for a while.
This commit is contained in:
parent
651bd62267
commit
b951fa009f
1 changed files with 2 additions and 1 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -103,7 +103,8 @@ def windowsBuild() {
|
|||
def windowsBuildCommands() {
|
||||
deleteDir()
|
||||
unstash 'bin'
|
||||
def img = docker.image('tobix/pywine')
|
||||
// Keep 3.8 for now, so we are still compatible with Windows 7
|
||||
def img = docker.image('tobix/pywine:3.8')
|
||||
img.pull()
|
||||
img.inside {
|
||||
sh '''
|
||||
|
|
Loading…
Reference in a new issue