From 31e0a4c4d7b86c68d51e143c5ad60feb8e7daa9b Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Thu, 5 Sep 2024 12:22:01 -0400 Subject: [PATCH] build: Build with ubuntu-latest instead of Ubuntu 20.04 --- .github/workflows/ci.yml | 2 +- .github/workflows/publish_pypi.yml | 2 +- CHANGELOG.rst | 10 ++++++++-- 3 files changed, 10 insertions(+), 4 deletions(-) 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] --------