From 5576fbac7e7eddceeaabcbf452807c18435f333c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BE=BD=E5=85=88=E7=94=9F?= <8655163+VergilGao@users.noreply.github.com> Date: Sun, 25 Oct 2020 16:47:37 +0800 Subject: [PATCH 1/4] Update 3.9.2 --- AV_Data_Capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AV_Data_Capture.py b/AV_Data_Capture.py index 6dfbe5d..bf7a0a9 100755 --- a/AV_Data_Capture.py +++ b/AV_Data_Capture.py @@ -116,7 +116,7 @@ def create_data_and_move_with_custom_number(file_path: str, c: config.Config, cu if __name__ == '__main__': - version = '3.9.1' + version = '3.9.2' # Parse command line args single_file_path, config_file, custom_number = argparse_function() From b34b4f36304a3e81469100113d1963865e929d4b Mon Sep 17 00:00:00 2001 From: Yoshiko2 <42309414+yoshiko2@users.noreply.github.com> Date: Mon, 26 Oct 2020 07:37:04 +0800 Subject: [PATCH 2/4] Update requirements.txt --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index a253f33..cab3e68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,5 @@ pyquery lxml beautifulsoup4 pillow -pyinstaller cloudscraper -pysocks \ No newline at end of file +pysocks From 87b15b6021851697a51c97c0c70298047fd1465e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BE=BD=E5=85=88=E7=94=9F?= <8655163+VergilGao@users.noreply.github.com> Date: Mon, 26 Oct 2020 11:37:08 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E5=9C=A8=20pip=20install=20=E4=B9=8B?= =?UTF-8?q?=E5=89=8D=E5=A2=9E=E5=8A=A0=20pyinstaller=20=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4cfa4d4..60e6717 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,6 +23,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + sed -i '$a pyinstaller' requirements.txt pip install -r requirements.txt - name: Test number_perser.get_number @@ -71,6 +72,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + sed -i '$a pyinstaller' requirements.txt pip install -r requirements.txt - name: Test number_perser.get_number @@ -119,6 +121,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + sed -i '' '$a\ + pyinstaller + ' requirements.txt pip install -r requirements.txt - name: Test number_perser.get_number From ebb236af5d5e5f0f8bcc6d4531a2e7e605add043 Mon Sep 17 00:00:00 2001 From: Yoshiko2 <42309414+yoshiko2@users.noreply.github.com> Date: Tue, 27 Oct 2020 09:07:43 +0800 Subject: [PATCH 4/4] Update Makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 05ef475..c92a6f9 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ make: @echo "[+]make prepare-dev" sudo apt-get -y install python3.7 python3-pip pip3 install -r requirements.txt + pip3 install pyinstaller #@echo "[+]Set CLOUDSCRAPER_PATH variable" #export cloudscraper_path=$(python3 -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1)