We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46fc9dc commit caee6a7Copy full SHA for caee6a7
.github/workflows/run_tests.yml
@@ -19,14 +19,18 @@ jobs:
19
strategy:
20
matrix:
21
python-version: [3.6, 3.7, 3.8]
22
- # Test against Pandas 1.0 and latest version
23
- pandas-version: ["1.0.*", ""]
+ # Test against Pandas 1.0, 1.1, and latest version
+ pandas-version: ["1.0.*", "1.1.*", ""]
24
exclude:
25
- # 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
26
- python-version: 3.6
27
pandas-version: "1.0.*"
28
+ - python-version: 3.6
29
+ pandas-version: "1.1.*"
30
- python-version: 3.8
31
32
+ - python-version: 3.8
33
34
35
steps:
36
- uses: actions/checkout@v2
0 commit comments