Bump v2.9.7

This commit is contained in:
Lovi 2025-03-22 15:12:43 +01:00
parent 77ce0490f4
commit 38188f3adf
4 changed files with 23 additions and 5 deletions

View File

@ -1,4 +1,4 @@
name: Test Site Modules and OS Path
name: Run Tests
on:
push:
@ -8,7 +8,8 @@ on:
workflow_dispatch:
jobs:
test:
test-load-search-api:
name: Test Load Search API
runs-on: ubuntu-latest
steps:
@ -27,6 +28,23 @@ jobs:
- name: Run loadSearchApi test
run: |
PYTHONPATH=$PYTHONPATH:$(pwd) python -m Test.Util.loadSearchApi
test-os-path:
name: Test OS Path
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run osPath test
run: |

View File

@ -68,7 +68,7 @@ def update():
# Check installed version
if str(__version__).replace('v', '') != str(last_version).replace('v', '') :
console.print(f"\n[red]New version available: [yellow]{last_version}")
console.print(f"\n[cyan]New version available: [yellow]{last_version}")
console.print(f"\n[red]{__title__} has been downloaded [yellow]{total_download_count} [red]times, but only [yellow]{percentual_stars}% [red]of users have starred it.\n\
[cyan]Help the repository grow today by leaving a [yellow]star [cyan]and [yellow]sharing [cyan]it with others online!")

View File

@ -1,5 +1,5 @@
__title__ = 'StreamingCommunity'
__version__ = '2.9.6'
__version__ = '2.9.7'
__author__ = 'Arrowar'
__description__ = 'A command-line program to download film'
__copyright__ = 'Copyright 2024'

View File

@ -10,7 +10,7 @@ with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r", enco
setup(
name="StreamingCommunity",
version="2.9.6",
version="2.9.7",
long_description=read_readme(),
long_description_content_type="text/markdown",
author="Lovi-0",