Skip to content

Commit 1b0f1ba

Browse files
authored
Merge pull request #199 from tomasbedrich/ci
Fix CI
2 parents 9d02600 + 4ace36a commit 1b0f1ba

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
fail-fast: false
88
matrix:
99
os: [ ubuntu-latest, macos-latest, windows-latest ]
10-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
10+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v2
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: '3.x'
1616
- name: Install dependencies

0 commit comments

Comments
 (0)