Skip to content

Commit

Permalink
[5] update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed Apr 9, 2023
1 parent 5c7cfaf commit 5684458
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.10-develop4
0.9.10-develop5
4 changes: 3 additions & 1 deletion pmm_overlay_reset.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ def reload(plex_item):
if isinstance(item, Show) and (pmmargs["season"] or pmmargs["episode"]):
tmdb_seasons = {s.season_number: s for s in tmdb_item.seasons} if tmdb_item else {}
for season in item.seasons():
title = f"{item.title}\nSeason {season.seasonNumber}: {season.title}"
title = f"Season {season.seasonNumber}"
title = title if title == season.title else f"{title}: {season.title}"
title = f"{item.title}\n {title}"
if pmmargs["season"]:
logger.separator(f"Resetting {title}", start="reset")
try:
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy==1.24.2
opencv-python==4.7.0.72
pillow==9.4.0
PlexAPI==4.13.2
pmmutils==0.4.0
pillow==9.5.0
PlexAPI==4.13.4
pmmutils==0.5.0
requests==2.28.2
tmdbapis==1.1.0

0 comments on commit 5684458

Please sign in to comment.