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 67
67
68
68
- name : Build PySceneDetect
69
69
run : |
70
+ python pre_release.py --ignore-installer
70
71
pyinstaller dist/scenedetect.spec
71
72
72
73
- name : Build Documentation
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
import os
3
3
import sys
4
- import xml
5
4
sys .path .append (os .path .abspath ("." ))
6
5
7
6
import scenedetect
8
7
VERSION = scenedetect .__version__
9
8
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 ()
14
13
15
14
aip_version = f"<ROW Property=\" ProductVersion\" Value=\" { VERSION } \" Options=\" 32\" />"
16
15
You can’t perform that action at this time.
0 commit comments