소스 검색

Use setuptools<45.0.0 for pyinstaller

Kentaro Wada 5 년 전
부모
커밋
7d500569a9
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .github/workflows/main.yml

+ 2 - 1
.github/workflows/main.yml

@@ -132,7 +132,8 @@ jobs:
         if [ "${{ matrix.PYTEST_QT_API }}" = "pyqt5" -a "${{ matrix.PYTHON_VERSION }}" = "3.6" ]; then
           export PATH="$HOME/miniconda/bin:$PATH"
           # Build the standalone executable
-          pip install 'pyinstaller!=3.4'  # 3.4 raises error
+          pip install 'pyinstaller!=3.4'
+          pip install 'setuptools<45.0.0'
           pyinstaller labelme.spec
           dist/labelme --version
         fi