File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 6767
6868 - name : Build PySceneDetect
6969 run : |
70+ python pre_release.py --ignore-installer
7071 pyinstaller dist/scenedetect.spec
7172
7273 - name : Build Documentation
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22import os
33import sys
4- import xml
54sys .path .append (os .path .abspath ("." ))
65
76import scenedetect
87VERSION = scenedetect .__version__
98
10-
11- installer_aip = ''
12- with open ("dist/installer/PySceneDetect.aip" , "r" ) as f :
13- installer_aip = f .read ()
9+ if len ( sys . argv ) <= 2 or not ( "--ignore-installer" in sys . argv ):
10+ installer_aip = ''
11+ with open ("dist/installer/PySceneDetect.aip" , "r" ) as f :
12+ installer_aip = f .read ()
1413
1514aip_version = f"<ROW Property=\" ProductVersion\" Value=\" { VERSION } \" Options=\" 32\" />"
1615
You can’t perform that action at this time.
0 commit comments