Skip to content

Commit

Permalink
Fix: CI error for python 3.6 & macOS
Browse files Browse the repository at this point in the history
Run actions/setup-python@v1
Error: Version 3.6 with arch x64 not found
  • Loading branch information
penguinolog committed Oct 25, 2021
1 parent 55c6aba commit 9b266dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
matrix:
os: [ubuntu, macos, windows]
python-version: [ '3.6' , '3.7', '3.8', '3.9' ] # Windows 3.9 fails due to the pywinpty dependency not working (Issue #5967)
exclude:
# macOS do not have python 3.6 x86_64
- os: macos
python-version: '3.6'
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/selenium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
matrix:
os: [ubuntu, macos]
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
exclude:
# macOS do not have python 3.6 x86_64
- os: macos
python-version: '3.6'
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 9b266dc

Please sign in to comment.