diff --git a/CHANGELOG.md b/CHANGELOG.md index 74511a5e2e..bd54ff4a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.16.19-dev1 +## 0.16.19-dev2 ### Enhancements @@ -6,14 +6,6 @@ ### Fixes - **fix a bug where table extraction is skipped when it shouldn't**. Pages with just one table as its content or starts with a table misses table extraction. The routing logic is now fixed. - -## 0.16.18-dev1 - -### Enhancements - -### Features - -### Fixes - **Correct deprecated `ruff` invocation in `make tidy`**. This will future-proof it or avoid surprises if someone happens to upgrade Ruff. - **Remove upper bound constraint on python version** in setup.py. Python3.13 is not yet officially supported, but allow users to try. diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 2673af4626..7421900821 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.19-dev1" # pragma: no cover +__version__ = "0.16.19-dev2" # pragma: no cover diff --git a/unstructured/utils.py b/unstructured/utils.py index 6b71e0ecc5..7d1cb7673a 100644 --- a/unstructured/utils.py +++ b/unstructured/utils.py @@ -292,6 +292,7 @@ def scarf_analytics(): + "&gpu=" + str(gpu_present) + "&dev=true", + timeout=10, ) requests.get( "https://packages2.unstructured.io/python-telemetry?version=" @@ -305,6 +306,7 @@ def scarf_analytics(): + "&gpu=" + str(gpu_present) + "&dev=true", + timeout=10, ) else: requests.get( @@ -319,6 +321,7 @@ def scarf_analytics(): + "&gpu=" + str(gpu_present) + "&dev=false", + timeout=10, ) requests.get( "https://packages2.unstructured.io/python-telemetry?version=" @@ -332,6 +335,7 @@ def scarf_analytics(): + "&gpu=" + str(gpu_present) + "&dev=false", + timeout=10, ) except Exception: pass