From 694afb6f8a9e11cbfce9f25532c1aeaa4e485d80 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Thu, 11 Apr 2024 14:06:05 +0200 Subject: [PATCH 1/4] Allow py311 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4a267cb..a27b949 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.ruff] line-length = 88 -target-version = "py312" +target-version = "py311" fix = true [tool.ruff.lint] From c382e5a30b7663a10207ddadc3f6ad034c20cc33 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Thu, 11 Apr 2024 14:06:26 +0200 Subject: [PATCH 2/4] Update Makefile install command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4151f53..5c8f1c2 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ VENV_BIN=$(VENV)/bin .PHONY: install-deps install-deps: .venv ## Install Python project dependencies $(VENV_BIN)/python -m pip install --upgrade uv - $(VENV_BIN)/uv pip install -r requirements.txt - $(VENV_BIN)/uv pip install -r requirements-dev.txt + $(VENV_BIN)/uv pip install --compile -r requirements.txt + $(VENV_BIN)/uv pip install --compile -r requirements-dev.txt .PHONY: bump-deps bump-deps: .venv ## Bump Python project dependencies From 83378ed49792877caf7fdaeb90fb9e22884b8128 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Thu, 11 Apr 2024 14:06:30 +0200 Subject: [PATCH 3/4] Bump deps --- requirements-dev.txt | 2 +- requirements.txt | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 9951dda..8822956 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -9,5 +9,5 @@ pandas-stubs==2.2.1.240316 ruff==0.3.5 types-pytz==2024.1.0.20240203 # via pandas-stubs -typing-extensions==4.10.0 +typing-extensions==4.11.0 # via mypy diff --git a/requirements.txt b/requirements.txt index 7b9924a..c1c7ba6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,11 +14,11 @@ cycler==0.12.1 # via matplotlib dask==2024.4.1 # via dask-expr -dask-expr==1.0.10 +dask-expr==1.0.11 # via dask duckdb==0.10.1 fastparquet==2024.2.0 -fonttools==4.50.0 +fonttools==4.51.0 # via matplotlib fsspec==2024.3.1 # via @@ -53,7 +53,7 @@ packaging==24.0 # matplotlib # plotly # statsmodels -pandas==2.2.1 +pandas==2.2.2 # via # dask # dask-expr @@ -69,7 +69,7 @@ pillow==10.3.0 # via matplotlib plotly==5.20.0 plotnine==0.13.4 -polars==0.20.18 +polars==0.20.19 py4j==0.10.9.7 # via pyspark pyarrow==15.0.2 @@ -110,7 +110,7 @@ toolz==0.12.1 # via # dask # partd -typing-extensions==4.10.0 +typing-extensions==4.11.0 # via # pydantic # pydantic-core From 7a559b9e890f1fead0e11e750cfd9b73c0045247 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Thu, 11 Apr 2024 14:12:41 +0200 Subject: [PATCH 4/4] Update lint --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8ecdf5b..f9a6cac 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -37,7 +37,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: '3.11' cache: pip - name: Install dependencies