Skip to content

Commit

Permalink
Test only major versions of pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
tung-vu-td committed Sep 17, 2024
1 parent 7cf539f commit cad4317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,8 @@ 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.0.3", "2.1.4", "2.2.2"]
pandas-version: ["1.5.3", "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
6 changes: 1 addition & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ 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.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")
for pandas in ("1.5.3", "2.2.2")
if (python, pandas) != ("3.8", "2.2.2")
],
)
Expand Down

0 comments on commit cad4317

Please sign in to comment.