nv-ingest-api 2025.3.8.dev20250308233351__tar.gz → 2025.3.10.dev20250310__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.

Potentially problematic release.


This version of nv-ingest-api might be problematic. Click here for more details.

Files changed (16) hide show
  1. {nv_ingest_api-2025.3.8.dev20250308233351/src/nv_ingest_api.egg-info → nv_ingest_api-2025.3.10.dev20250310}/PKG-INFO +1 -1
  2. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310/src/nv_ingest_api.egg-info}/PKG-INFO +1 -1
  3. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/version.py +1 -1
  4. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/LICENSE +0 -0
  5. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/MANIFEST.in +0 -0
  6. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/README.md +0 -0
  7. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/pyproject.toml +0 -0
  8. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/setup.cfg +0 -0
  9. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api/__init__.py +0 -0
  10. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api/primitives/__init__.py +0 -0
  11. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api/primitives/control_message_task.py +0 -0
  12. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api/primitives/ingest_control_message.py +0 -0
  13. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api.egg-info/SOURCES.txt +0 -0
  14. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api.egg-info/dependency_links.txt +0 -0
  15. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api.egg-info/requires.txt +0 -0
  16. {nv_ingest_api-2025.3.8.dev20250308233351 → nv_ingest_api-2025.3.10.dev20250310}/src/nv_ingest_api.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nv-ingest-api
3
- Version: 2025.3.8.dev20250308233351
3
+ Version: 2025.3.10.dev20250310
4
4
  Summary: Python module with core document ingestion functions.
5
5
  Author-email: Jeremy Dyer <jdyer@nvidia.com>
6
6
  License: Apache License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nv-ingest-api
3
- Version: 2025.3.8.dev20250308233351
3
+ Version: 2025.3.10.dev20250310
4
4
  Summary: Python module with core document ingestion functions.
5
5
  Author-email: Jeremy Dyer <jdyer@nvidia.com>
6
6
  License: Apache License
@@ -26,7 +26,7 @@ def get_version():
26
26
  # If rev is not specified and defaults to 0 lets create a more meaningful development
27
27
  # identifier that is pep440 compliant
28
28
  if int(rev) == 0:
29
- rev = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
29
+ rev = datetime.datetime.now().strftime("%Y%m%d")
30
30
  final_version = f"{version}.dev{rev}"
31
31
  elif release_type == "release":
32
32
  final_version = f"{version}.post{rev}" if int(rev) > 0 else version