From ea509ada3fc9e0233ae203d1b310c53605968188 Mon Sep 17 00:00:00 2001 From: Jacob Schmieder Date: Tue, 2 Jan 2024 10:19:17 +0100 Subject: [PATCH 1/4] Create dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..91abb11 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "pip" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 4b225f5f8bc1f9e1fe458a2f9067076465e45d05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:20:23 +0000 Subject: [PATCH 2/4] Update setuptools requirement from ~=65.6.3 to ~=69.0.3 Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version. - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v65.6.3...v69.0.3) --- updated-dependencies: - dependency-name: setuptools dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ef74c29..767d5d7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ pyannote.database~=4.1.3 pyannote.metrics~=3.2.1 pyannote.pipeline~=2.3 -setuptools~=65.6.3 +setuptools~=69.0.3 setuptools-rust~=1.5.2 tqdm>=4.65.0 From 274379b20cab42843629b029d0bcf72020142111 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 09:41:34 +0000 Subject: [PATCH 3/4] Update setuptools-rust requirement from ~=1.5.2 to ~=1.8.1 Updates the requirements on [setuptools-rust](https://github.com/PyO3/setuptools-rust) to permit the latest version. - [Release notes](https://github.com/PyO3/setuptools-rust/releases) - [Changelog](https://github.com/PyO3/setuptools-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyO3/setuptools-rust/compare/v1.5.2...v1.8.1) --- updated-dependencies: - dependency-name: setuptools-rust dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 767d5d7..d632296 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ pyannote.metrics~=3.2.1 pyannote.pipeline~=2.3 setuptools~=69.0.3 -setuptools-rust~=1.5.2 +setuptools-rust~=1.8.1 tqdm>=4.65.0 From 5ee2b60880220d1637ad2169d5bcb380e0426441 Mon Sep 17 00:00:00 2001 From: Jacob Schmieder Date: Tue, 9 Apr 2024 15:05:12 +0200 Subject: [PATCH 4/4] Update gradio_app.py Removed tkinter --- scraibe/app/gradio_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scraibe/app/gradio_app.py b/scraibe/app/gradio_app.py index fa3e8fb..e3557c8 100644 --- a/scraibe/app/gradio_app.py +++ b/scraibe/app/gradio_app.py @@ -34,7 +34,7 @@ Usage: import json import os -from tkinter import CURRENT + import gradio as gr from tqdm import tqdm @@ -435,4 +435,4 @@ def gradio_Interface(model : Scraibe = None): if __name__ == "__main__": - gradio_Interface().queue().launch() \ No newline at end of file + gradio_Interface().queue().launch()