From 5c17e2b7bd4c02829e904c2d06def6ce5c797de3 Mon Sep 17 00:00:00 2001 From: theOehrly <23384863+theOehrly@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:11:21 +0100 Subject: [PATCH] MNT: bump request-cache min version, fix min version test --- .github/workflows/tests.yml | 2 +- pyproject.toml | 4 ++-- requirements/minver.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 173d0c84e..80c7da08a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,7 +49,7 @@ jobs: - name: Install Fast-F1 from sources run: | - python3 -m pip install -e . + python3 -m pip install ${{ matrix.extra-requirements }} -e . - name: Create cache directory run: | diff --git a/pyproject.toml b/pyproject.toml index c4e87b304..4e128dfad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,14 +13,14 @@ license = { file = "LICENSE" } # minimum python version additionally needs to be changed in the test matrix requires-python = ">=3.8" -# minimum package versions additionally need to be changed in requirement/minver.txt +# minimum package versions additionally need to be changed in requirements/minver.txt dependencies = [ "matplotlib>=3.5.1,<4.0.0", "numpy>=1.21.5,<2.0.0", "pandas>=1.3.5,<2.1.0", "python-dateutil", "requests>=2.28.1", - "requests-cache>=0.8.0", + "requests-cache>=1.0.0", "scipy>=1.7.3,<2.0.0", "thefuzz", "timple>=0.1.6", diff --git a/requirements/minver.txt b/requirements/minver.txt index 88389f6f1..8bf848502 100644 --- a/requirements/minver.txt +++ b/requirements/minver.txt @@ -2,7 +2,7 @@ matplotlib==3.5.1 numpy==1.21.5 pandas==1.3.5 requests==2.28.1 -requests-cache==0.8.0 +requests-cache==1.0.0 scipy==1.7.3 timple==0.1.6 websockets==10.3 \ No newline at end of file