From 37fed59f82db20f28acb158df498c065d6668f19 Mon Sep 17 00:00:00 2001 From: Vu Tung Date: Mon, 16 Sep 2024 17:31:48 +0700 Subject: [PATCH] Add test for pandas 2.0.3 & 2.1.4 --- .github/workflows/test.yml | 6 +++++- noxfile.py | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2cc61c..1ddfea4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,12 +15,16 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11"] - pandas-version: ["1.3.5", "1.4.4", "1.5.3", "2.2.2"] + pandas-version: ["1.3.5", "1.4.4", "1.5.3", "2.0.3", "2.1.4", "2.2.2"] exclude: - python-version: "3.10" pandas-version: "1.3.5" - python-version: "3.10" pandas-version: "1.4.4" + - python-version: "3.8" + pandas-version: "2.0.3" + - python-version: "3.8" + pandas-version: "2.1.4" - python-version: "3.8" pandas-version: "2.2.2" diff --git a/noxfile.py b/noxfile.py index 3e254bb..420915d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -17,9 +17,11 @@ def lint(session): [ (python, pandas) for python in ("3.8", "3.9", "3.10", "3.11") - for pandas in ("1.3.5", "1.4.4", "1.5.3", "2.2.2") + for pandas in ("1.3.5", "1.4.4", "1.5.3", "2.0.3", "2.1.4", "2.2.2") if (python, pandas) != ("3.10", "1.3.5") if (python, pandas) != ("3.10", "1.4.4") + if (python, pandas) != ("3.8", "2.0.3") + if (python, pandas) != ("3.8", "2.1.4") if (python, pandas) != ("3.8", "2.2.2") ], )