pycaption 2.2.18__tar.gz → 2.2.20__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.
Files changed (57) hide show
  1. {pycaption-2.2.18 → pycaption-2.2.20}/LICENSE +1 -1
  2. {pycaption-2.2.18/pycaption.egg-info → pycaption-2.2.20}/PKG-INFO +4 -6
  3. {pycaption-2.2.18 → pycaption-2.2.20}/README.rst +2 -2
  4. {pycaption-2.2.18 → pycaption-2.2.20/pycaption.egg-info}/PKG-INFO +4 -6
  5. {pycaption-2.2.18 → pycaption-2.2.20}/setup.py +2 -4
  6. {pycaption-2.2.18 → pycaption-2.2.20}/MANIFEST.in +0 -0
  7. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/__init__.py +0 -0
  8. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/base.py +0 -0
  9. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/dfxp/__init__.py +0 -0
  10. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/dfxp/base.py +0 -0
  11. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/dfxp/extras.py +0 -0
  12. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/exceptions.py +0 -0
  13. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/geometry.py +0 -0
  14. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/microdvd.py +0 -0
  15. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/sami.py +0 -0
  16. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/scc/__init__.py +0 -0
  17. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/scc/constants.py +0 -0
  18. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/scc/specialized_collections.py +0 -0
  19. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/scc/state_machines.py +0 -0
  20. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/scc/translator.py +0 -0
  21. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/srt.py +0 -0
  22. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/transcript.py +0 -0
  23. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/utils.py +0 -0
  24. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption/webvtt.py +0 -0
  25. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption.egg-info/SOURCES.txt +0 -0
  26. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption.egg-info/dependency_links.txt +0 -0
  27. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption.egg-info/requires.txt +0 -0
  28. {pycaption-2.2.18 → pycaption-2.2.20}/pycaption.egg-info/top_level.txt +0 -0
  29. {pycaption-2.2.18 → pycaption-2.2.20}/setup.cfg +0 -0
  30. {pycaption-2.2.18 → pycaption-2.2.20}/tests/__init__.py +0 -0
  31. {pycaption-2.2.18 → pycaption-2.2.20}/tests/conftest.py +0 -0
  32. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/__init__.py +0 -0
  33. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/dfxp.py +0 -0
  34. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/microdvd.py +0 -0
  35. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/sami.py +0 -0
  36. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/scc.py +0 -0
  37. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/srt.py +0 -0
  38. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/translated_scc.py +0 -0
  39. {pycaption-2.2.18 → pycaption-2.2.20}/tests/fixtures/webvtt.py +0 -0
  40. {pycaption-2.2.18 → pycaption-2.2.20}/tests/mixins.py +0 -0
  41. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_base.py +0 -0
  42. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_dfxp.py +0 -0
  43. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_dfxp_conversion.py +0 -0
  44. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_dfxp_extras.py +0 -0
  45. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_functions.py +0 -0
  46. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_geometry.py +0 -0
  47. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_microdvd.py +0 -0
  48. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_microdvd_conversion.py +0 -0
  49. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_sami.py +0 -0
  50. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_sami_conversion.py +0 -0
  51. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_scc.py +0 -0
  52. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_scc_conversion.py +0 -0
  53. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_scc_translator.py +0 -0
  54. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_srt.py +0 -0
  55. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_srt_conversion.py +0 -0
  56. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_webvtt.py +0 -0
  57. {pycaption-2.2.18 → pycaption-2.2.20}/tests/test_webvtt_conversion.py +0 -0
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright (c) 2012-2025 PBS.org
189
+ Copyright (c) 2012-2026 PBS.org
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycaption
3
- Version: 2.2.18
3
+ Version: 2.2.20
4
4
  Summary: Closed caption converter
5
5
  Author: Joe Norton
6
6
  Author-email: joey@nortoncrew.com
@@ -12,15 +12,13 @@ Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
15
  Classifier: Programming Language :: Python :: 3.10
18
16
  Classifier: Programming Language :: Python :: 3.11
19
17
  Classifier: Programming Language :: Python :: 3.12
20
18
  Classifier: Topic :: Software Development :: Libraries
21
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
20
  Classifier: Topic :: Multimedia :: Video
23
- Requires-Python: >=3.8,<4.0
21
+ Requires-Python: >=3.10,<4.0
24
22
  License-File: LICENSE
25
23
  Requires-Dist: beautifulsoup4>=4.12.1
26
24
  Requires-Dist: lxml>=4.9.1
@@ -50,7 +48,7 @@ py-caption
50
48
  to read content into a CaptionSet object, and then use one of the Writers to
51
49
  output the CaptionSet into captions of your desired format.
52
50
 
53
- Tested with Python versions 3.8, 3.9, 3.10, 3.11 and 3.12.
51
+ Tested with Python versions 3.10, 3.11 and 3.12.
54
52
  (for Python 2 use pycaption < 1.0.0)
55
53
 
56
54
  For details, see the `documentation <http://pycaption.readthedocs.org>`__.
@@ -58,7 +56,7 @@ For details, see the `documentation <http://pycaption.readthedocs.org>`__.
58
56
  License
59
57
  -------
60
58
 
61
- This module is Copyright (c) 2012-2025 PBS.org and is available under the `Apache
59
+ This module is Copyright (c) 2012-2026 PBS.org and is available under the `Apache
62
60
  License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`__.
63
61
 
64
62
  .. |Build Status| image:: https://github.com/pbs/pycaption/actions/workflows/unit_tests.yml/badge.svg
@@ -7,7 +7,7 @@ py-caption
7
7
  to read content into a CaptionSet object, and then use one of the Writers to
8
8
  output the CaptionSet into captions of your desired format.
9
9
 
10
- Tested with Python versions 3.8, 3.9, 3.10, 3.11 and 3.12.
10
+ Tested with Python versions 3.10, 3.11 and 3.12.
11
11
  (for Python 2 use pycaption < 1.0.0)
12
12
 
13
13
  For details, see the `documentation <http://pycaption.readthedocs.org>`__.
@@ -15,7 +15,7 @@ For details, see the `documentation <http://pycaption.readthedocs.org>`__.
15
15
  License
16
16
  -------
17
17
 
18
- This module is Copyright (c) 2012-2025 PBS.org and is available under the `Apache
18
+ This module is Copyright (c) 2012-2026 PBS.org and is available under the `Apache
19
19
  License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`__.
20
20
 
21
21
  .. |Build Status| image:: https://github.com/pbs/pycaption/actions/workflows/unit_tests.yml/badge.svg
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycaption
3
- Version: 2.2.18
3
+ Version: 2.2.20
4
4
  Summary: Closed caption converter
5
5
  Author: Joe Norton
6
6
  Author-email: joey@nortoncrew.com
@@ -12,15 +12,13 @@ Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.8
16
- Classifier: Programming Language :: Python :: 3.9
17
15
  Classifier: Programming Language :: Python :: 3.10
18
16
  Classifier: Programming Language :: Python :: 3.11
19
17
  Classifier: Programming Language :: Python :: 3.12
20
18
  Classifier: Topic :: Software Development :: Libraries
21
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
20
  Classifier: Topic :: Multimedia :: Video
23
- Requires-Python: >=3.8,<4.0
21
+ Requires-Python: >=3.10,<4.0
24
22
  License-File: LICENSE
25
23
  Requires-Dist: beautifulsoup4>=4.12.1
26
24
  Requires-Dist: lxml>=4.9.1
@@ -50,7 +48,7 @@ py-caption
50
48
  to read content into a CaptionSet object, and then use one of the Writers to
51
49
  output the CaptionSet into captions of your desired format.
52
50
 
53
- Tested with Python versions 3.8, 3.9, 3.10, 3.11 and 3.12.
51
+ Tested with Python versions 3.10, 3.11 and 3.12.
54
52
  (for Python 2 use pycaption < 1.0.0)
55
53
 
56
54
  For details, see the `documentation <http://pycaption.readthedocs.org>`__.
@@ -58,7 +56,7 @@ For details, see the `documentation <http://pycaption.readthedocs.org>`__.
58
56
  License
59
57
  -------
60
58
 
61
- This module is Copyright (c) 2012-2025 PBS.org and is available under the `Apache
59
+ This module is Copyright (c) 2012-2026 PBS.org and is available under the `Apache
62
60
  License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`__.
63
61
 
64
62
  .. |Build Status| image:: https://github.com/pbs/pycaption/actions/workflows/unit_tests.yml/badge.svg
@@ -20,7 +20,7 @@ transcript_dependencies = ["nltk==3.9.1"]
20
20
 
21
21
  setup(
22
22
  name="pycaption",
23
- version="2.2.18",
23
+ version="2.2.20",
24
24
  description="Closed caption converter",
25
25
  long_description=open(README_PATH).read(),
26
26
  author="Joe Norton",
@@ -30,7 +30,7 @@ setup(
30
30
  "Documentation": "https://pycaption.readthedocs.io/",
31
31
  "Release notes": "https://pycaption.readthedocs.io" "/en/stable/changelog.html",
32
32
  },
33
- python_requires=">=3.8,<4.0",
33
+ python_requires=">=3.10,<4.0",
34
34
  install_requires=dependencies,
35
35
  extras_require={"dev": dev_dependencies, "transcript": transcript_dependencies},
36
36
  packages=find_packages(),
@@ -41,8 +41,6 @@ setup(
41
41
  "Operating System :: OS Independent",
42
42
  "Programming Language :: Python",
43
43
  "Programming Language :: Python :: 3",
44
- "Programming Language :: Python :: 3.8",
45
- "Programming Language :: Python :: 3.9",
46
44
  "Programming Language :: Python :: 3.10",
47
45
  "Programming Language :: Python :: 3.11",
48
46
  "Programming Language :: Python :: 3.12",
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