Skip to content

Commit

Permalink
Add test for pandas 2.0.3 & 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td committed Sep 16, 2024
1 parent 2ace066 commit 37fed59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
],
)
Expand Down

0 comments on commit 37fed59

Please sign in to comment.