Skip to content

Commit 819c0f0

Browse files
committed
Fixing the CI to support Python 3.11
1 parent 7957a60 commit 819c0f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy-wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
arch: ["x86"]
2626
steps:
2727
- name: Check out repository
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929

3030
- name: Set up Python ${{ matrix.python }}
31-
uses: actions/setup-python@v2
31+
uses: actions/setup-python@v3
3232
with:
3333
python-version: ${{ matrix.python }}
3434
architecture: "x86"
@@ -56,10 +56,10 @@ jobs:
5656
arch: ["AMD64"]
5757
steps:
5858
- name: Check out repository
59-
uses: actions/checkout@v2
59+
uses: actions/checkout@v3
6060

6161
- name: Set up Python ${{ matrix.python }}
62-
uses: actions/setup-python@v2
62+
uses: actions/setup-python@v3
6363
with:
6464
python-version: ${{ matrix.python }}
6565
architecture: "x64"

0 commit comments

Comments
 (0)