From f73a438dce79cdf48d6d14c730a1cb8d7b166408 Mon Sep 17 00:00:00 2001 From: jtpavlock Date: Sat, 25 Jul 2020 13:02:19 -0700 Subject: [PATCH] Add python 3.9-dev to CI tests (#3687) * Add python 3.9-dev to ci tests * test integration tests on latest versions of python --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/integration_test.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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: |