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 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() 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) 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