Latest pyinstaller includes required fixes for tests. (#7513)

This commit is contained in:
matham 2021-05-02 14:51:21 -04:00 committed by GitHub
parent cf61e5ed8b
commit eb11a4e0ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -72,8 +72,7 @@ function Install-kivy-test-run-win-deps {
function Install-kivy-test-run-pip-deps {
python -m pip install pip wheel setuptools --upgrade
# workaround for https://github.com/pyinstaller/pyinstaller/issues/4265 until next release
python -m pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip twine
python -m pip install twine
}
function Install-kivy {
@ -87,8 +86,6 @@ function Install-kivy-wheel {
cd "$HOME"
python -m pip install pip wheel setuptools --upgrade
# workaround for https://github.com/pyinstaller/pyinstaller/issues/4265 until next release
python -m pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip
$version=python -c "import sys; print('{}{}'.format(sys.version_info.major, sys.version_info.minor))"
$bitness=python -c "import sys; print('win_amd64' if sys.maxsize > 2**32 else 'win32')"
@ -103,8 +100,6 @@ function Install-kivy-sdist {
cd "$HOME"
python -m pip install pip wheel setuptools --upgrade
# workaround for https://github.com/pyinstaller/pyinstaller/issues/4265 until next release
python -m pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip
$kivy_fname=(ls $root/dist/Kivy-*.tar.gz).name
python -m pip install "$root/dist/$kivy_fname[full,dev]"