Skip to content

Commit

Permalink
Merge pull request #380 from testing-cabal/ci-ubuntu-24.04
Browse files Browse the repository at this point in the history
Change CI to Ubuntu-latest
  • Loading branch information
jelmer authored Jun 10, 2024
2 parents 20dc444 + 14677c4 commit 8b083d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, pypy3.9, pypy3.10]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Improvements

* Deprecate SkippedTest exception. (Stephen Finucane)

* Drop support for Python 3.7. (Jelmer Vernooij)

2.7.1
~~~~~

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -42,7 +41,7 @@ classifiers = [
]
dependencies = ["setuptools; python_version>='3.12'"]
dynamic = ["version"]
requires-python = ">=3.7"
requires-python = ">=3.8"

[project.urls]
Homepage = "https://github.com/testing-cabal/testtools"
Expand Down

0 comments on commit 8b083d3

Please sign in to comment.