diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c382b87..36993ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04] + os: [ubuntu-latest] python-version: - '3.11' - '3.12' diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index c189500..decb11b 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -8,7 +8,7 @@ on: jobs: push: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cf230a1..089d8ac 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,8 +19,14 @@ Unreleased [6.0.0] ------- -Breaking Change: The EdxRestApiClient` has been deprecated and removed in this release. -Breaking Change: Dropping Python 3.8 support +* Breaking Change: The EdxRestApiClient` has been deprecated and removed in this release. + +* Breaking Change: Dropping Python 3.8 support + +* We no longer test with ubuntu 20.04 and test with whatever is the latest + ubuntu supplied by the ``ubuntu-latest`` github action. Not actually a + breaking change but a change in expectations that we're noting here. We + believe there is no code tied to the OS version in this library. [5.7.1] --------