diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-06-23 01:53:17 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2023-06-23 01:53:17 +0200 |
commit | 290eecac062db139dd17ebce5cd6b19ac53f5c18 (patch) | |
tree | 375e976d5ff62482112ec98aeebaa99742532a9f | |
parent | 1d1634b95ac3d29d3e44820f01bc789944366147 (diff) | |
download | wee-slack-290eecac062db139dd17ebce5cd6b19ac53f5c18.tar.gz |
Remove running on Python 2.7 in CI
The setup-python action doesn't support Python 2.7 anymore.
-rw-r--r-- | .github/workflows/wee-slack.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml index 6a4275c..fe25da4 100644 --- a/.github/workflows/wee-slack.yml +++ b/.github/workflows/wee-slack.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python_version: [2.7, 3.7, 3.8, 3.9] + python_version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python_version: [2.7, 3.7, 3.8, 3.9] + python_version: [3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 |