Skip to content

Commit 34fb3ec

Browse files
authored
Merge pull request #1146 from effigies/mnt/py311
MNT: Test Python 3.11 support
2 parents 598bcaa + 0f921b0 commit 34fb3ec

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.github/workflows/pre-release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ defaults:
1818
run:
1919
shell: bash
2020

21+
concurrency:
22+
group: ${{ github.workflow }}-${{ github.ref }}
23+
cancel-in-progress: true
24+
25+
permissions:
26+
contents: read
27+
2128
jobs:
2229
pre-release:
2330
# Check pre-releases of dependencies on stable Python
@@ -26,7 +33,7 @@ jobs:
2633
strategy:
2734
matrix:
2835
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
29-
python-version: ["3.9", "3.10"]
36+
python-version: ["3.9", "3.10", "3.11"]
3037
architecture: ['x64', 'x86']
3138
install: ['pip']
3239
check: ['test']
@@ -36,7 +43,7 @@ jobs:
3643
include:
3744
# Pydicom master
3845
- os: ubuntu-latest
39-
python-version: "3.10"
46+
python-version: "3.11"
4047
install: pip
4148
check: test
4249
pip-flags: ''

.github/workflows/stable.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ defaults:
2424
run:
2525
shell: bash
2626

27+
concurrency:
28+
group: ${{ github.workflow }}-${{ github.ref }}
29+
cancel-in-progress: true
30+
31+
permissions:
32+
contents: read
33+
2734
jobs:
2835
build:
2936
runs-on: ubuntu-latest
@@ -84,7 +91,7 @@ jobs:
8491
strategy:
8592
matrix:
8693
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
87-
python-version: [3.7, 3.8, 3.9, "3.10"]
94+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
8895
architecture: ['x64', 'x86']
8996
install: ['pip']
9097
check: ['test']

0 commit comments

Comments
 (0)