Skip to content

Commit 2d8992e

Browse files
committed
Update CI to use Python 3.11 and latest actions
The workflow now sets up Python 3.11 instead of 3.8 and updates the actions/checkout and actions/setup-python versions to v2 and v4, respectively, ensuring compatibility with newer Python features and improved GitHub Actions support.
1 parent 21a3584 commit 2d8992e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout source
1414
uses: actions/checkout@v2
15-
- name: Set up Python 3.8
16-
uses: actions/setup-python@v1
15+
- name: Set up Python 3.11
16+
uses: actions/setup-python@v4
1717
with:
18-
python-version: "3.8"
18+
python-version: "3.11"
1919
- name: Build package
2020
run: |
2121
pip install build

0 commit comments

Comments
 (0)