Skip to content

Commit

Permalink
move Python3.6 from ubuntu-latest to legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Bender committed Dec 30, 2022
1 parent 57ab4e4 commit 394d6db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [2.7, 3.4, 3.5]
python-version: [2.7, 3.4, 3.5, 3.6]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion check_install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for version in 2.7 3.4 3.5 3.6 3.7 3.8;
for version in 2.7 3.4 3.5 3.6 3.7 3.8 3.9 3.10;
do
if [ -a "`which python$version`" ]; then
python$version << EOF
Expand Down

0 comments on commit 394d6db

Please sign in to comment.