Skip to content

Commit 02d8b4c

Browse files
committed
Support Python 3.14
1 parent f0dec59 commit 02d8b4c

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-22.04
2929
strategy:
3030
matrix:
31-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
31+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3232

3333
steps:
3434
- uses: actions/checkout@v4

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ strategy:
1919
python.version: '3.11'
2020
Python312:
2121
python.version: '3.12'
22+
Python313:
23+
python.version: '3.13'
24+
Python314:
25+
python.version: '3.14'
2226

2327
steps:
2428
- task: UsePythonVersion@0

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers =
2424
Programming Language :: Python :: 3.11
2525
Programming Language :: Python :: 3.12
2626
Programming Language :: Python :: 3.13
27+
Programming Language :: Python :: 3.14
2728
License :: OSI Approved :: MIT License
2829
Operating System :: OS Independent
2930

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[tox]
22
env_list =
3+
# Historically, this tox.ini is intended only for MSAL maintainer
4+
# to manually test with the whatever Python 3 version available on their devbox.
5+
# This way, it is unnecessary to enumerate all Python versions here.
36
py3
47
minversion = 4.21.2
58

0 commit comments

Comments
 (0)