diff options
author | Sam Clegg <sbc@chromium.org> | 2020-01-31 13:35:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-31 13:35:27 -0800 |
commit | d18058fe482a75ec8fefbef56d27cf5c8e36afd8 (patch) | |
tree | 1194a4e8e239013713d38123275c636e74d3646a /.github | |
parent | ea255e38b9bcc072ae7f1fc8062e208ed88c121f (diff) | |
download | wabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.tar.gz wabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.tar.bz2 wabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.zip |
Remove support for python2 (#1321)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ea6dc43..64ba8511 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,16 +9,10 @@ jobs: strategy: matrix: os: [ubuntu-16.04, macos-latest, windows-latest] - python: [2.7, '3.x'] - exclude: - - os: macos-latest - python: '3.x' - - os: windows-latest - python: '3.x' steps: - uses: actions/setup-python@v1 with: - python-version: ${{ matrix.python }} + python-version: '3.x' - uses: actions/checkout@v1 with: submodules: true |