From d282401697a2563c89d834c7ab602903b9915364 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Mon, 25 Mar 2024 16:26:15 -0400 Subject: [PATCH] Remove Python 3.6 from tests to fix tests Python 3.6 is not available on ubuntu-latest (22.04). It was available when ubuntu-latest was 20.04. --- .github/workflows/all-lints.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all-lints.yml b/.github/workflows/all-lints.yml index 4b90a36..d86b0bd 100644 --- a/.github/workflows/all-lints.yml +++ b/.github/workflows/all-lints.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v1 - uses: marian-code/python-lint-annotate@master diff --git a/README.md b/README.md index f1b3a49..fc0beb3 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ steps: ## Details -Uses `actions/setup-python@v2`. Only python `3.6` - `3.10` version are tested since +Uses `actions/setup-python@v2`. Only python `3.7` - `3.10` version are tested since they are by far most common now. Other python `3.x` versions should also work. Any python `2.x` versions are unsupported! You can lint on Linux, Windows and MacOS.