Skip to content

Commit b24a5c3

Browse files
authored
Fix GitHub workflows after removing support for 3.9 (#278)
* fix workflows * fix devcontainer * unblock precommit checks
1 parent 60b87ee commit b24a5c3

File tree

4 files changed

+9
-15
lines changed

4 files changed

+9
-15
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3.9
1+
FROM mcr.microsoft.com/devcontainers/python:3.10
22

33
ENV PYTHONUNBUFFERED 1
44

.github/workflows/_integration_tests.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: integration-tests
33
on:
44
push:
55
branches: [ main ]
6-
paths:
7-
- "**.py"
6+
paths-ignore:
7+
- "**.md"
88

99
pull_request:
1010
branches: [ main ]
11-
paths:
12-
- "**.py"
11+
paths-ignore:
12+
- "**.md"
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- "3.9"
2827
- "3.10"
2928
- "3.11"
3029
- "3.12"

.github/workflows/_tests.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: unit-tests
33
on:
44
push:
55
branches: [ main ]
6-
paths:
7-
- "**.py"
6+
paths-ignore:
7+
- "**.md"
88

99
pull_request:
1010
branches: [ main ]
11-
paths:
12-
- "**.py"
11+
paths-ignore:
12+
- "**.md"
1313

1414
concurrency:
1515
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
matrix:
2626
python-version:
27-
- "3.9"
2827
- "3.10"
2928
- "3.11"
3029
- "3.12"

.github/workflows/check_code_quality.yml

-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@ name: pre-commit
33
on:
44
push:
55
branches: [ main ]
6-
paths:
7-
- "**.py"
86

97
pull_request:
108
branches: [ main ]
11-
paths:
12-
- "**.py"
139

1410
concurrency:
1511
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)