Skip to content

Commit 38188f3

Browse files
committed
Bump v2.9.7
1 parent 77ce049 commit 38188f3

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

.github/workflows/testing.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test Site Modules and OS Path
1+
name: Run Tests
22

33
on:
44
push:
@@ -8,7 +8,8 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
test:
11+
test-load-search-api:
12+
name: Test Load Search API
1213
runs-on: ubuntu-latest
1314

1415
steps:
@@ -27,6 +28,23 @@ jobs:
2728
- name: Run loadSearchApi test
2829
run: |
2930
PYTHONPATH=$PYTHONPATH:$(pwd) python -m Test.Util.loadSearchApi
31+
32+
test-os-path:
33+
name: Test OS Path
34+
runs-on: ubuntu-latest
35+
36+
steps:
37+
- uses: actions/checkout@v3
38+
39+
- name: Set up Python
40+
uses: actions/setup-python@v4
41+
with:
42+
python-version: '3.11'
43+
44+
- name: Install dependencies
45+
run: |
46+
python -m pip install --upgrade pip
47+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3048
3149
- name: Run osPath test
3250
run: |

StreamingCommunity/Upload/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def update():
6868

6969
# Check installed version
7070
if str(__version__).replace('v', '') != str(last_version).replace('v', '') :
71-
console.print(f"\n[red]New version available: [yellow]{last_version}")
71+
console.print(f"\n[cyan]New version available: [yellow]{last_version}")
7272

7373
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\
7474
[cyan]Help the repository grow today by leaving a [yellow]star [cyan]and [yellow]sharing [cyan]it with others online!")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'StreamingCommunity'
2-
__version__ = '2.9.6'
2+
__version__ = '2.9.7'
33
__author__ = 'Arrowar'
44
__description__ = 'A command-line program to download film'
55
__copyright__ = 'Copyright 2024'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read_readme():
1010

1111
setup(
1212
name="StreamingCommunity",
13-
version="2.9.6",
13+
version="2.9.7",
1414
long_description=read_readme(),
1515
long_description_content_type="text/markdown",
1616
author="Lovi-0",

0 commit comments

Comments
 (0)