Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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')

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changelog
Unreleased
----------

Updated
-------
- Pin CI environment to Ubuntu 20.04 to support running Py 36 tests

v9.6.1
------

Expand Down