diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index cabb65f..abe3a8d 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -8,7 +8,7 @@ jobs: environment: test strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/readme.md b/readme.md index b989def..3b33b08 100644 --- a/readme.md +++ b/readme.md @@ -32,7 +32,7 @@ Edit config.json to fit your setup First, get everything updated by running `sudo apt-get update` -Verify Python is installed by running `python3 --version` or `python --version`. Versions 3.7, 3.8, 3.9, and 3.10 are supported (This includes versions like 3.10.7) +Verify Python is installed by running `python3 --version` or `python --version`. Versions 3.8, 3.9, and 3.10 are supported (This includes versions like 3.10.7) Run the following command: `git clone https://github.com/dylanpdx/BetterTwitFix` This will download all the code for vxTwitter. Once that is done, you can run `cd BetterTwitFix` to enter the newly downloaded folder. diff --git a/requirements.txt b/requirements.txt index 0e00753..42198a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -pymongo==4.3.3 -boto3==1.26.155 +pymongo==4.4.0 +boto3==1.28.1 requests==2.31.0 -Pillow==9.5.0 +Pillow==10.0.0 Flask==2.2.3 -Flask-Cors==3.0.10 +Flask-Cors==4.0.0 yt-dlp==2022.7.18 twitter==1.19.6 \ No newline at end of file diff --git a/twitfix.py b/twitfix.py index 3b96f84..9d57983 100644 --- a/twitfix.py +++ b/twitfix.py @@ -229,7 +229,7 @@ def vnfFromCacheOrDL(video_link): elif 'suspended' in exErr.msg: exErr.msg=msgs.tweetSuspended else: - exErr.msg=None + exErr.msg=msgs.tweetNotFound log.error("VNF Get failed: " + video_link + " " + str(exErr)) return None,exErr.msg except TwitterHTTPError as twErr: