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 0e34568Copy full SHA for 0e34568
.github/workflows/run_tests.yml
@@ -19,14 +19,14 @@ 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
26
- python-version: 3.6
27
- pandas-version: "1.0.*"
+ pandas-version: ["1.0.*", "1.1.*"]
28
- python-version: 3.8
29
30
31
steps:
32
- uses: actions/checkout@v2
0 commit comments