diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-06 01:12:32 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-06 01:12:32 +0300 |
commit | d04c4d36d8e76ad30f6cd7c91dc30341f2923913 (patch) | |
tree | 7684d9dec24862a05f87b57baa736e4dcf889ac4 | |
parent | server.py: ThreadingHTTPServer is Python 3.7+ only (diff) | |
download | linux-status-d04c4d36d8e76ad30f6cd7c91dc30341f2923913.tar.gz linux-status-d04c4d36d8e76ad30f6cd7c91dc30341f2923913.zip |
workflows/test.yml: format strings are Python 3.6+
-rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 015d9e3..a1eb1eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9] name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout |