diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 491deae..e8e06f1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,11 @@ version: 2 updates: -- package-ecosystem: pip - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 + # Enable version updates for Python + - package-ecosystem: "pip" + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly" + ignore: + - dependency-name: "numpy" + - dependency-name: "scipy" diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 7f5ab8c..7e40ba6 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -39,6 +39,7 @@ jobs: python -m pip install --upgrade pip pip install --requirement requirements.txt --upgrade --quiet pip install --requirement tests/requirements.txt --quiet + pip install tflite-runtime --find-links https://google-coral.github.io/py-repo/tflite-runtime/ --quiet python --version pip --version pip list diff --git a/dependabot.yml b/dependabot.yml deleted file mode 100644 index a8e6489..0000000 --- a/dependabot.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 2 -updates: - # Enable version updates for Python - - package-ecosystem: "pip" - directory: "/" - # Check for updates once a week - schedule: - interval: "weekly" - ignore: - - dependency-name: "numpy" diff --git a/requirements.txt b/requirements.txt index 729bb10..a8e5d91 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,5 @@ numpy==1.26.4 opencv-python==4.10.0.84 scikit-image==0.24.0 scikit-learn==1.5.2 -scipy==1.14.1 -tflite-runtime==2.14.0 +scipy==1.13.1 tqdm==4.66.5