Skip to content

Commit caee6a7

Browse files
committed
Add Pandas 1.1.x to CI testing
1 parent 46fc9dc commit caee6a7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,18 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version: [3.6, 3.7, 3.8]
22-
# Test against Pandas 1.0 and latest version
23-
pandas-version: ["1.0.*", ""]
22+
# Test against Pandas 1.0, 1.1, and latest version
23+
pandas-version: ["1.0.*", "1.1.*", ""]
2424
exclude:
25-
# Only run one test with Pandas 1.0.x and Python 3.7, exclude others
25+
# Only run one test with Pandas 1.x.x and Python 3.7, exclude others
2626
- python-version: 3.6
2727
pandas-version: "1.0.*"
28+
- python-version: 3.6
29+
pandas-version: "1.1.*"
2830
- python-version: 3.8
2931
pandas-version: "1.0.*"
32+
- python-version: 3.8
33+
pandas-version: "1.1.*"
3034

3135
steps:
3236
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)