diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab409dc..d2cc61c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,8 @@ jobs: pandas-version: "1.3.5" - python-version: "3.10" pandas-version: "1.4.4" + - python-version: "3.8" + pandas-version: "2.2.2" steps: diff --git a/noxfile.py b/noxfile.py index 4146b9b..3e254bb 100644 --- a/noxfile.py +++ b/noxfile.py @@ -20,6 +20,7 @@ def lint(session): for pandas in ("1.3.5", "1.4.4", "1.5.3", "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.2.2") ], ) def tests(session, python, pandas):