diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 26108f1e..917cfa31 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,11 +3,11 @@ updates: - package-ecosystem: "pip" directory: "/requirements" schedule: - interval: "weekly" + interval: "monthly" - package-ecosystem: "github-actions" # NOTE(robinson) - Workflow files stored in the # default location of `.github/workflows` directory: "/" schedule: - interval: "weekly" + interval: "monthly" diff --git a/CHANGELOG.md b/CHANGELOG.md index 699abc58..46b75431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.2.7-dev0 + ## 0.2.6 * Add donut model script for image prediction diff --git a/requirements/base.txt b/requirements/base.txt index 00e02daf..af123e0f 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,6 +1,6 @@ # -# This file is autogenerated by pip-compile with python 3.8 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.8 +# by the following command: # # pip-compile --output-file=requirements/base.txt # @@ -63,7 +63,7 @@ matplotlib==3.6.3 # via pycocotools mpmath==1.2.1 # via sympy -numpy==1.24.1 +numpy==1.24.2 # via # contourpy # layoutparser diff --git a/requirements/dev.txt b/requirements/dev.txt index 678384b6..49c531d8 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,6 +1,6 @@ # -# This file is autogenerated by pip-compile with python 3.8 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.8 +# by the following command: # # pip-compile requirements/dev.in # @@ -310,13 +310,13 @@ webencodings==0.5.1 # via # bleach # tinycss2 -websocket-client==1.5.0 +websocket-client==1.5.1 # via jupyter-server wheel==0.38.4 # via pip-tools widgetsnbextension==4.0.5 # via ipywidgets -zipp==3.12.0 +zipp==3.12.1 # via # importlib-metadata # importlib-resources diff --git a/requirements/test.txt b/requirements/test.txt index 0530873b..118330cd 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,6 +1,6 @@ # -# This file is autogenerated by pip-compile with python 3.8 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.8 +# by the following command: # # pip-compile requirements/test.in # @@ -57,7 +57,7 @@ multidict==6.0.4 # via yarl mypy==0.991 # via -r requirements/test.in -mypy-extensions==0.4.3 +mypy-extensions==1.0.0 # via # black # mypy diff --git a/unstructured_inference/__version__.py b/unstructured_inference/__version__.py index 4bca06f7..430c3399 100644 --- a/unstructured_inference/__version__.py +++ b/unstructured_inference/__version__.py @@ -1 +1 @@ -__version__ = "0.2.6" # pragma: no cover +__version__ = "0.2.7-dev0" # pragma: no cover