ScoopInstaller_Main/winpython.json
Benedetto Polimeni 5fefa66049 winpython: Update to version 3.7.1.0 (#2870)
* fixed checkver
* switched to innosetup
* added installer script
2018-12-09 21:47:12 +01:00

54 lines
1.8 KiB
JSON

{
"description": "Free, open-source and portable Python distribution for Windows",
"version": "3.7.1.0",
"license": "MIT",
"homepage": "https://winpython.github.io/",
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/winpython/WinPython_3.7/3.7.1.0/WinPython64-3.7.1.0Zero.exe",
"hash": "4e81abd373c089cd9b6687393bb3d179e6792a97d8f088f77d35b9067f118c0f"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/winpython/WinPython_3.7/3.7.1.0/WinPython32-3.7.1.0Zero.exe",
"hash": "a09c79c7630278f831d257c03bab99f76d3a0e23f8b4362a3e1e2495a3aa088f"
}
},
"innosetup": true,
"installer": {
"script": [
"Get-ChildItem \"$dir\" -Exclude 'python-*' | Remove-Item -Force -Recurse",
"Move-Item \"$dir\\python-*\\*\" \"$dir\" -Force",
"Remove-Item \"$dir\\python-*\""
]
},
"bin": [
"python.exe",
"pythonw.exe",
[
"python.exe",
"python3"
]
],
"env_add_path": "scripts",
"checkver": {
"github": "https://github.com/winpython/winpython/",
"regex": "-([\\d.]+)Zero\\.exe",
"reverse": true
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://downloads.sourceforge.net/project/winpython/WinPython_$majorVersion.$minorVersion/$version/WinPython64-$versionZero.exe"
},
"32bit": {
"url": "https://downloads.sourceforge.net/project/winpython/WinPython_$majorVersion.$minorVersion/$version/WinPython32-$versionZero.exe"
}
},
"hash": {
"url": "https://winpython.github.io/md5_sha1.txt",
"find": "([a-fA-F\\d]{64})\\s\\|\\s$basename"
}
}
}