Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce90f1c

Browse files
authored
Support Python 3.13 (#527)
1 parent 5130a24 commit ce90f1c

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
33
Release History
44
===============
5+
0.2.5
6+
++++++
7+
* Add support for Python 3.11, 3.12, and 3.13
8+
* Tested compatibility (externally via External GitHub Actions)
9+
510
0.2.4
611
++++++
712
* pin setuptools to 70.0.0

azdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# license information.
55
# -----------------------------------------------------------------------------
66

7-
__VERSION__ = '0.2.4'
7+
__VERSION__ = '0.2.5'

azure-pipelines.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
Python312:
2525
python.version: '3.12'
2626
tox_env: 'py312'
27+
Python313:
28+
python.version: '3.13'
29+
tox_env: 'py313'
2730
steps:
2831
- task: UsePythonVersion@0
2932
displayName: 'Use Python $(python.version)'

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
'Environment :: Console',
4141
'License :: OSI Approved :: MIT License',
4242
'Natural Language :: English',
43-
'Programming Language :: Python :: 3.6',
44-
'Programming Language :: Python :: 3.7',
45-
'Programming Language :: Python :: 3.8',
4643
'Programming Language :: Python :: 3.9',
47-
'Programming Language :: Python :: 3.10'
44+
'Programming Language :: Python :: 3.10',
45+
'Programming Language :: Python :: 3.11',
46+
'Programming Language :: Python :: 3.12',
47+
'Programming Language :: Python :: 3.13'
4848
],
4949
keywords='azure',
50-
python_requires='>=3.6',
50+
python_requires='>=3.9',
5151
packages=[
5252
'azdev',
5353
'azdev.config',

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
22
envlist =
3-
py36
4-
py37
5-
py38
63
py39
74
py310
5+
py311
6+
py312
7+
py313
88

99
[testenv]
1010
whitelist_externals =

0 commit comments

Comments
 (0)