diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25c43d35..60cc3d6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,8 @@ on: jobs: tests: name: Tests - runs-on: ubuntu-latest + # Pin to 20.04 as we still require Python 3.6 + runs-on: ubuntu-20.04 strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] @@ -49,7 +50,8 @@ jobs: docs: name: Docs - runs-on: ubuntu-latest + # Pin to 20.04 as we still require Python 3.6 + runs-on: ubuntu-20.04 steps: - name: Checkout @@ -70,7 +72,8 @@ jobs: lint: name: Lint - runs-on: ubuntu-latest + # Pin to 20.04 as we still require Python 3.6 + runs-on: ubuntu-20.04 steps: - name: Checkout @@ -91,7 +94,8 @@ jobs: build-and-publish: name: Build and Publish - runs-on: ubuntu-latest + # Pin to 20.04 as we still require Python 3.6 + runs-on: ubuntu-20.04 needs: [tests, docs, lint] if: startsWith(github.ref, 'refs/tags') diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 24f8e958..7d789b6e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,10 @@ Changelog Unreleased ---------- +Updated +------- +- Pin CI environment to Ubuntu 20.04 to support running Py 36 tests + v9.6.1 ------