raw-docx 0.9.0__tar.gz → 0.9.1__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 (27) hide show
  1. {raw_docx-0.9.0 → raw_docx-0.9.1}/PKG-INFO +2 -2
  2. {raw_docx-0.9.0 → raw_docx-0.9.1}/setup.py +1 -1
  3. raw_docx-0.9.1/src/raw_docx/__info__.py +1 -0
  4. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx.egg-info/PKG-INFO +2 -2
  5. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx.egg-info/requires.txt +1 -1
  6. raw_docx-0.9.0/src/raw_docx/__info__.py +0 -1
  7. {raw_docx-0.9.0 → raw_docx-0.9.1}/LICENSE +0 -0
  8. {raw_docx-0.9.0 → raw_docx-0.9.1}/README.md +0 -0
  9. {raw_docx-0.9.0 → raw_docx-0.9.1}/setup.cfg +0 -0
  10. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/__init__.py +0 -0
  11. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/docx/__init__.py +0 -0
  12. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/docx/docx_paragraph.py +0 -0
  13. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/docx/docx_table.py +0 -0
  14. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_document.py +0 -0
  15. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_docx.py +0 -0
  16. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_image.py +0 -0
  17. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_list.py +0 -0
  18. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_list_item.py +0 -0
  19. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_paragraph.py +0 -0
  20. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_run.py +0 -0
  21. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_section.py +0 -0
  22. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_table.py +0 -0
  23. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_table_cell.py +0 -0
  24. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx/raw_table_row.py +0 -0
  25. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx.egg-info/SOURCES.txt +0 -0
  26. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx.egg-info/dependency_links.txt +0 -0
  27. {raw_docx-0.9.0 → raw_docx-0.9.1}/src/raw_docx.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: raw_docx
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: A package for processing and analyzing raw document formats
5
5
  Home-page: https://github.com/daveih/raw_docx
6
6
  Author: Dave Iberson-Hurst
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
17
17
  Requires-Python: >=3.8
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: python-docx==1.2.0
20
+ Requires-Dist: python-docx>=1.1.2
21
21
  Requires-Dist: simple_error_log>=0.6.0
22
22
  Dynamic: author
23
23
  Dynamic: classifier
@@ -19,7 +19,7 @@ setup(
19
19
  packages=find_packages(where="src"),
20
20
  package_dir={"": "src"},
21
21
  package_data={},
22
- install_requires=["python-docx==1.2.0", "simple_error_log>=0.6.0"],
22
+ install_requires=["python-docx>=1.1.2", "simple_error_log>=0.6.0"],
23
23
  tests_require=["pytest", "pytest-cov", "pytest-mock", "python-dotenv", "pyyaml"],
24
24
  classifiers=[
25
25
  "Development Status :: 3 - Alpha",
@@ -0,0 +1 @@
1
+ __package_version__ = "0.9.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: raw_docx
3
- Version: 0.9.0
3
+ Version: 0.9.1
4
4
  Summary: A package for processing and analyzing raw document formats
5
5
  Home-page: https://github.com/daveih/raw_docx
6
6
  Author: Dave Iberson-Hurst
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
17
17
  Requires-Python: >=3.8
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
- Requires-Dist: python-docx==1.2.0
20
+ Requires-Dist: python-docx>=1.1.2
21
21
  Requires-Dist: simple_error_log>=0.6.0
22
22
  Dynamic: author
23
23
  Dynamic: classifier
@@ -1,2 +1,2 @@
1
- python-docx==1.2.0
1
+ python-docx>=1.1.2
2
2
  simple_error_log>=0.6.0
@@ -1 +0,0 @@
1
- __package_version__ = "0.9.0"
File without changes
File without changes
File without changes