From 1c768c9972661083bee82f33f9cb35c1f527a49c Mon Sep 17 00:00:00 2001 From: "Brutus (robot)" Date: Sun, 22 Jun 2025 20:23:07 +0000 Subject: [PATCH 1/2] Bump flake8 from 7.2.0 to 7.3.0 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f98c4dc..7530b7e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,6 +24,6 @@ repos: hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 7.2.0 + rev: 7.3.0 hooks: - id: flake8 From d9f092f2eeef6531b3ccf0c1cdbe683ece38cb8a Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 23 Jun 2025 11:40:16 +0800 Subject: [PATCH 2/2] Tweak the Pandas test to correct for 3.9 wheel error. --- tests/test_thirdparty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_thirdparty.py b/tests/test_thirdparty.py index 563a410..31f1846 100644 --- a/tests/test_thirdparty.py +++ b/tests/test_thirdparty.py @@ -190,7 +190,7 @@ def test_pandas(): ) # Pandas 1.5 changed the API for to_csv() - if tuple(int(v) for v in __version__.split(".")) < (1, 5): + if tuple(int(v) for v in __version__.split(".")[:2]) < (1, 5): kwargs = dict(line_terminator="\n") else: kwargs = dict(lineterminator="\n")