Skip to content

Commit

Permalink
build: Build with ubuntu-latest instead of Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
feanil committed Sep 6, 2024
1 parent 61b519f commit 31e0a4c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-latest]
python-version:
- '3.11'
- '3.12'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:

push:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]
--------
Expand Down

0 comments on commit 31e0a4c

Please sign in to comment.