diff options
| author | Asif Saif Uddin <auvipy@gmail.com> | 2021-09-09 22:02:35 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-09 19:02:35 +0300 |
| commit | e4fe3280ac528b100a399c30c90a9eec6dfecfec (patch) | |
| tree | e4b2e155e9a58adc91fdb1fa1244399110134ec7 /.github | |
| parent | 88a6b39db181f1a88342c1b7056e8bbdde7325fb (diff) | |
| download | kombu-e4fe3280ac528b100a399c30c90a9eec6dfecfec.tar.gz | |
drop python 3.6 from CI (#1382)
* drop python 3.6 from CI
* Drop 3.6 from CI matrix.
Co-authored-by: Omer Katz <omer.drow@gmail.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0a88ad2f..52ce3eb1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6,3.7,3.8,3.9] + python-version: [3.7,3.8,3.9] steps: - name: Install system packages run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6,3.7,3.8,3.9,pypy3] + python-version: [3.7,3.8,3.9,pypy3] steps: - name: Install system packages run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev @@ -44,7 +44,7 @@ jobs: run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-amqp -- -v - name: Run redis integration tests run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-redis -- -v - + #################### Linters and checkers #################### lint: needs: [unittest, integration] |
