Skip to content

Commit

Permalink
Update python-package-testing.yml to fix failing tests
Browse files Browse the repository at this point in the history
There is seemingly a bug with python 3.6 versions (actions/setup-python#544)
  • Loading branch information
RaameshB committed Jun 7, 2024
1 parent 395e159 commit c2963ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package-testing.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
bvgy# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python package testing
Expand All @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 600
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -44,4 +44,4 @@ jobs:
run: |
bash <(curl -s https://codecov.io/bash)
env:
super_secret: ${{ secrets.CODECOV_TOKEN }}
super_secret: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit c2963ec

Please sign in to comment.