Skip to content

Commit 7013a6d

Browse files
committed
Drop Python 3.6 from CI
1 parent 0a67c52 commit 7013a6d

File tree

1 file changed

+3
-16
lines changed

1 file changed

+3
-16
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,12 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest, windows-latest, macos-latest]
11-
python-version: [3.6, 3.7, 3.8, 3.9]
12-
exclude:
13-
- os: macos-latest
14-
python-version: "3.6"
15-
- os: windows-latest
16-
python-version: "3.6"
11+
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]
1712
runs-on: ${{ matrix.os }}
1813
steps:
19-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
2015
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
2217
with:
2318
python-version: ${{ matrix.python-version }}
2419
- name: Check Python
@@ -37,11 +32,3 @@ jobs:
3732
- name: Integration Tests
3833
run: |
3934
make test
40-
# - name: Slack Notification
41-
# uses: homoluctus/slatify@master
42-
# if: failure()
43-
# with:
44-
# type: ${{ job.status }}
45-
# job_name: '*Installer*'
46-
# commit: true
47-
# url: ${{ secrets.SLACK_BUILD_WEBHOOK }}

0 commit comments

Comments
 (0)