[7.x] Handle Python pre-releases properly in meta header

Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
This commit is contained in:
github-actions[bot]
2020-12-15 16:32:27 -06:00
committed by GitHub
parent b894e359df
commit 58b376159c
3 changed files with 13 additions and 6 deletions
+7 -2
View File
@@ -55,13 +55,18 @@ jobs:
run: nox -s docs
test-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
experimental: [false]
include:
- python-version: 3.9-dev
experimental: true
runs-on: ubuntu-latest
name: test-${{ matrix.python-version }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout Repository
uses: actions/checkout@v1