Skip to content

Commit

Permalink
Remove python 3.6 from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NaderAlAwar committed Oct 3, 2023
1 parent 0768ed0 commit 0417a70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 'pypy-3.6', 'pypy-3.7']
python-version: [3.7, 3.8, 3.9, 'pypy-3.6', 'pypy-3.7']
kokkos-branch: ['master']

steps:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
kokkos-branch: ['develop']

steps:
Expand All @@ -163,7 +163,7 @@ jobs:
python -m pip install 'cmake==3.20.2'

- name: Install Kokkos
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }}
if: ${{ matrix.python-version != '3.7' }}
run:
git clone -b ${{ matrix.kokkos-branch }} https://github.com/kokkos/kokkos.git /tmp/kokkos-source &&
cmake -B /tmp/kokkos-build
Expand Down

0 comments on commit 0417a70

Please sign in to comment.