Skip to content

Commit cad4317

Browse files
committed
Test only major versions of pandas
1 parent 7cf539f commit cad4317

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

Diff for: .github/workflows/test.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,8 @@ jobs:
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
1717
python-version: ["3.8", "3.9", "3.10", "3.11"]
18-
pandas-version: ["1.3.5", "1.4.4", "1.5.3", "2.0.3", "2.1.4", "2.2.2"]
18+
pandas-version: ["1.5.3", "2.2.2"]
1919
exclude:
20-
- python-version: "3.10"
21-
pandas-version: "1.3.5"
22-
- python-version: "3.10"
23-
pandas-version: "1.4.4"
24-
- python-version: "3.8"
25-
pandas-version: "2.0.3"
26-
- python-version: "3.8"
27-
pandas-version: "2.1.4"
2820
- python-version: "3.8"
2921
pandas-version: "2.2.2"
3022

Diff for: noxfile.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@ def lint(session):
1717
[
1818
(python, pandas)
1919
for python in ("3.8", "3.9", "3.10", "3.11")
20-
for pandas in ("1.3.5", "1.4.4", "1.5.3", "2.0.3", "2.1.4", "2.2.2")
21-
if (python, pandas) != ("3.10", "1.3.5")
22-
if (python, pandas) != ("3.10", "1.4.4")
23-
if (python, pandas) != ("3.8", "2.0.3")
24-
if (python, pandas) != ("3.8", "2.1.4")
20+
for pandas in ("1.5.3", "2.2.2")
2521
if (python, pandas) != ("3.8", "2.2.2")
2622
],
2723
)

0 commit comments

Comments
 (0)