diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f9cce8d23..08e7548f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest] - python-version: [2.7, 3.5, 3.6, 3.7, 3.8] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9-dev] env: PY_COLORS: 1 @@ -82,4 +82,4 @@ jobs: python -m pip install tox sphinx - name: Lint with flake8 - run: tox -e py-lint \ No newline at end of file + run: tox -e py-lint diff --git a/.github/workflows/integration_test.yaml b/.github/workflows/integration_test.yaml index 05623bf20..1e8b3a773 100644 --- a/.github/workflows/integration_test.yaml +++ b/.github/workflows/integration_test.yaml @@ -12,10 +12,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up latest Python version uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9-dev - name: Install base dependencies run: |