talklib 3.5.2__tar.gz → 3.5.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: talklib
3
- Version: 3.5.2
3
+ Version: 3.5.4
4
4
  Summary: A package to automate processing of shows/segments airing on the TL
5
5
  Author-email: Ben Weddle <ben.weddle@gmail.com>
6
6
  Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
@@ -11,7 +11,7 @@ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE.txt
13
13
  Requires-Dist: aiohappyeyeballs==2.6.1
14
- Requires-Dist: aiohttp==3.13.3
14
+ Requires-Dist: aiohttp==3.13.5
15
15
  Requires-Dist: aiohttp-retry==2.8.3
16
16
  Requires-Dist: aiosignal==1.4.0
17
17
  Requires-Dist: annotated-types==0.7.0
@@ -55,7 +55,7 @@ Requires-Dist: propcache==0.4.1
55
55
  Requires-Dist: pycparser==2.22
56
56
  Requires-Dist: pydantic==2.9.1
57
57
  Requires-Dist: pydantic_core==2.23.3
58
- Requires-Dist: Pygments==2.17.2
58
+ Requires-Dist: Pygments==2.20.0
59
59
  Requires-Dist: PyJWT==2.12.1
60
60
  Requires-Dist: PyNaCl==1.6.2
61
61
  Requires-Dist: pyparsing==3.0.9
@@ -66,7 +66,7 @@ Requires-Dist: python-dateutil==2.9.0.post0
66
66
  Requires-Dist: pytz==2022.6
67
67
  Requires-Dist: pywin32-ctypes==0.2.2
68
68
  Requires-Dist: readme-renderer==42.0
69
- Requires-Dist: requests==2.32.5
69
+ Requires-Dist: requests==2.33.1
70
70
  Requires-Dist: requests-toolbelt==1.0.0
71
71
  Requires-Dist: rfc3986==2.0.0
72
72
  Requires-Dist: rich==13.7.0
@@ -116,12 +116,23 @@ Use Python 3.10 or higher.
116
116
  Make sure to select "add to PATH" during installation.
117
117
 
118
118
  ### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
119
- You need both FFmpeg & FFprobe installed on the PC and added to the PATH:
119
+ You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
120
120
 
121
121
  To repeat, **this package will not work without FFmpeg and FFprobe**.
122
122
 
123
123
  FFmpeg and FFprobe should be two separate binaries.
124
124
 
125
+ The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
126
+ ````bash
127
+ winget install Gyan.FFmpeg
128
+ ````
129
+
130
+ This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
131
+ ````bash
132
+ ffmpeg -version
133
+ ````
134
+ You should see some output from FFmpeg. If you see an error, it was not installed correctly.
135
+
125
136
  ### -[Twilio](https://www.twilio.com/)
126
137
  Twilio is used for SMS and phone call notifications.
127
138
 
@@ -32,12 +32,23 @@ Use Python 3.10 or higher.
32
32
  Make sure to select "add to PATH" during installation.
33
33
 
34
34
  ### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
35
- You need both FFmpeg & FFprobe installed on the PC and added to the PATH:
35
+ You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
36
36
 
37
37
  To repeat, **this package will not work without FFmpeg and FFprobe**.
38
38
 
39
39
  FFmpeg and FFprobe should be two separate binaries.
40
40
 
41
+ The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
42
+ ````bash
43
+ winget install Gyan.FFmpeg
44
+ ````
45
+
46
+ This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
47
+ ````bash
48
+ ffmpeg -version
49
+ ````
50
+ You should see some output from FFmpeg. If you see an error, it was not installed correctly.
51
+
41
52
  ### -[Twilio](https://www.twilio.com/)
42
53
  Twilio is used for SMS and phone call notifications.
43
54
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "talklib"
3
- version = "3.5.2"
3
+ version = "3.5.4"
4
4
  description = "A package to automate processing of shows/segments airing on the TL"
5
5
  readme = "README.md"
6
6
  license = "MIT-open-group"
@@ -1,5 +1,5 @@
1
1
  aiohappyeyeballs==2.6.1
2
- aiohttp==3.13.3
2
+ aiohttp==3.13.5
3
3
  aiohttp-retry==2.8.3
4
4
  aiosignal==1.4.0
5
5
  annotated-types==0.7.0
@@ -43,7 +43,7 @@ propcache==0.4.1
43
43
  pycparser==2.22
44
44
  pydantic==2.9.1
45
45
  pydantic_core==2.23.3
46
- Pygments==2.17.2
46
+ Pygments==2.20.0
47
47
  PyJWT==2.12.1
48
48
  PyNaCl==1.6.2
49
49
  pyparsing==3.0.9
@@ -54,7 +54,7 @@ python-dateutil==2.9.0.post0
54
54
  pytz==2022.6
55
55
  pywin32-ctypes==0.2.2
56
56
  readme-renderer==42.0
57
- requests==2.32.5
57
+ requests==2.33.1
58
58
  requests-toolbelt==1.0.0
59
59
  rfc3986==2.0.0
60
60
  rich==13.7.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: talklib
3
- Version: 3.5.2
3
+ Version: 3.5.4
4
4
  Summary: A package to automate processing of shows/segments airing on the TL
5
5
  Author-email: Ben Weddle <ben.weddle@gmail.com>
6
6
  Maintainer-email: Ben Weddle <ben.weddle@gmail.com>
@@ -11,7 +11,7 @@ Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE.txt
13
13
  Requires-Dist: aiohappyeyeballs==2.6.1
14
- Requires-Dist: aiohttp==3.13.3
14
+ Requires-Dist: aiohttp==3.13.5
15
15
  Requires-Dist: aiohttp-retry==2.8.3
16
16
  Requires-Dist: aiosignal==1.4.0
17
17
  Requires-Dist: annotated-types==0.7.0
@@ -55,7 +55,7 @@ Requires-Dist: propcache==0.4.1
55
55
  Requires-Dist: pycparser==2.22
56
56
  Requires-Dist: pydantic==2.9.1
57
57
  Requires-Dist: pydantic_core==2.23.3
58
- Requires-Dist: Pygments==2.17.2
58
+ Requires-Dist: Pygments==2.20.0
59
59
  Requires-Dist: PyJWT==2.12.1
60
60
  Requires-Dist: PyNaCl==1.6.2
61
61
  Requires-Dist: pyparsing==3.0.9
@@ -66,7 +66,7 @@ Requires-Dist: python-dateutil==2.9.0.post0
66
66
  Requires-Dist: pytz==2022.6
67
67
  Requires-Dist: pywin32-ctypes==0.2.2
68
68
  Requires-Dist: readme-renderer==42.0
69
- Requires-Dist: requests==2.32.5
69
+ Requires-Dist: requests==2.33.1
70
70
  Requires-Dist: requests-toolbelt==1.0.0
71
71
  Requires-Dist: rfc3986==2.0.0
72
72
  Requires-Dist: rich==13.7.0
@@ -116,12 +116,23 @@ Use Python 3.10 or higher.
116
116
  Make sure to select "add to PATH" during installation.
117
117
 
118
118
  ### -[FFmpeg](https://www.ffmpeg.org/download.html#build-windows)
119
- You need both FFmpeg & FFprobe installed on the PC and added to the PATH:
119
+ You need both FFmpeg & FFprobe installed on the PC and added to the PATH.
120
120
 
121
121
  To repeat, **this package will not work without FFmpeg and FFprobe**.
122
122
 
123
123
  FFmpeg and FFprobe should be two separate binaries.
124
124
 
125
+ The easiest way to install FFmpeg (and FFprobe) on Windows is with WinGet:
126
+ ````bash
127
+ winget install Gyan.FFmpeg
128
+ ````
129
+
130
+ This should install both FFmpeg & FFprobe. After WinGet completes installation, test to ensure FFmpeg is installed:
131
+ ````bash
132
+ ffmpeg -version
133
+ ````
134
+ You should see some output from FFmpeg. If you see an error, it was not installed correctly.
135
+
125
136
  ### -[Twilio](https://www.twilio.com/)
126
137
  Twilio is used for SMS and phone call notifications.
127
138
 
@@ -1,5 +1,5 @@
1
1
  aiohappyeyeballs==2.6.1
2
- aiohttp==3.13.3
2
+ aiohttp==3.13.5
3
3
  aiohttp-retry==2.8.3
4
4
  aiosignal==1.4.0
5
5
  annotated-types==0.7.0
@@ -43,7 +43,7 @@ propcache==0.4.1
43
43
  pycparser==2.22
44
44
  pydantic==2.9.1
45
45
  pydantic_core==2.23.3
46
- Pygments==2.17.2
46
+ Pygments==2.20.0
47
47
  PyJWT==2.12.1
48
48
  PyNaCl==1.6.2
49
49
  pyparsing==3.0.9
@@ -54,7 +54,7 @@ python-dateutil==2.9.0.post0
54
54
  pytz==2022.6
55
55
  pywin32-ctypes==0.2.2
56
56
  readme-renderer==42.0
57
- requests==2.32.5
57
+ requests==2.33.1
58
58
  requests-toolbelt==1.0.0
59
59
  rfc3986==2.0.0
60
60
  rich==13.7.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes