Skip to content

Commit d0f38e6

Browse files
feat(ci): add support for python 3.11 (#107)
* feat(ci): add support for python `3.11` and `3.12` * feat(ci): run CI if workflow file changes * feat(ci): add support for python `3.11` (only)
1 parent a3356bc commit d0f38e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ on:
66
paths:
77
- "**.py"
88
- ".devcontainer/requirements.txt"
9+
- ".github/workflows/python.yml"
910
pull_request:
1011
branches: [main]
1112
paths:
1213
- "**.py"
1314
- ".devcontainer/requirements.txt"
15+
- ".github/workflows/python.yml"
1416
release:
1517
types: [created]
1618
schedule:
@@ -22,7 +24,7 @@ jobs:
2224

2325
strategy:
2426
matrix:
25-
python-version: ["3.8", "3.9", "3.10"]
27+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2628
os: [ubuntu-latest, windows-latest, macos-latest]
2729

2830
steps:

0 commit comments

Comments
 (0)