Skip to content

Commit

Permalink
Drop tests for Python 3.6
Browse files Browse the repository at this point in the history
Tests for Python 3.6 no longer function because a number of upstream projects have dropped support. Switching our Python versions used for testing to 3.7-3.9. Also updating Pandas versions to 1.2, 1.3, and current.
  • Loading branch information
frreiss committed Aug 28, 2023
1 parent 78ff26a commit 6af50f4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
# Test against Pandas 1.1, 1.2, and latest version
pandas-version: ["1.1.*", "1.2.*", ""]
python-version: [3.7, 3.8, 3.9]
# Test against Pandas 1.2, 1.3, and latest version
pandas-version: ["1.2.*", "1.3.*", ""]
exclude:
# Test all Pandas versions with Python 3.7, exclude others
- python-version: 3.6
# Test all Pandas versions with Python 3.8, exclude others
- python-version: 3.7
pandas-version: "1.1.*"
- python-version: 3.6
- python-version: 3.7
pandas-version: "1.2.*"
- python-version: 3.8
pandas-version: "1.1.*"
Expand Down

0 comments on commit 6af50f4

Please sign in to comment.