Skip to content

Commit

Permalink
Add Pandas 1.1.x to CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanCutler committed Jan 4, 2021
1 parent 46fc9dc commit caee6a7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,18 @@ jobs:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
# Test against Pandas 1.0 and latest version
pandas-version: ["1.0.*", ""]
# Test against Pandas 1.0, 1.1, and latest version
pandas-version: ["1.0.*", "1.1.*", ""]
exclude:
# Only run one test with Pandas 1.0.x and Python 3.7, exclude others
# Only run one test with Pandas 1.x.x and Python 3.7, exclude others
- python-version: 3.6
pandas-version: "1.0.*"
- python-version: 3.6
pandas-version: "1.1.*"
- python-version: 3.8
pandas-version: "1.0.*"
- python-version: 3.8
pandas-version: "1.1.*"

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit caee6a7

Please sign in to comment.