Skip to content

Commit

Permalink
Drop Python 3.8 from CI test matrix. (#263)
Browse files Browse the repository at this point in the history
* Drop Python 3.8 from tests

* Run apt-get update before running apt-get install

* Add news file
  • Loading branch information
marcoesters authored Oct 17, 2024
1 parent 95dc71b commit 9ec72f0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,12 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
exclude:
- os: macos-13
python-version: "3.11"
- os: macos-13
python-version: "3.10"
- os: macos-13
python-version: "3.9"

steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0
Expand All @@ -50,6 +48,7 @@ jobs:
- name: Add Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install libfile-mimeinfo-perl desktop-file-utils
echo "XDG_UTILS_DEBUG_LEVEL=2" >> $GITHUB_ENV
echo "XDG_CURRENT_DESKTOP=GNOME" >> $GITHUB_ENV
Expand Down
19 changes: 19 additions & 0 deletions news/263-drop-py38-from-tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Enhancements

* <news item>

### Bug fixes

* <news item>

### Deprecations

* <news item>

### Docs

* <news item>

### Other

* Drop Python 3.8 from the CI test matrix. (#263)

0 comments on commit 9ec72f0

Please sign in to comment.