Skip to content
Merged
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Release History
===============
0.2.5
++++++
* Add support for Python 3.11, 3.12, and 3.13
* Tested compatibility (externally via External GitHub Actions)

0.2.4
++++++
* pin setuptools to 70.0.0
Expand Down
2 changes: 1 addition & 1 deletion azdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# license information.
# -----------------------------------------------------------------------------

__VERSION__ = '0.2.4'
__VERSION__ = '0.2.5'
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
Python312:
python.version: '3.12'
tox_env: 'py312'
Python313:
python.version: '3.13'
tox_env: 'py313'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],
keywords='azure',
python_requires='>=3.6',
python_requires='>=3.9',
packages=[
'azdev',
'azdev.config',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
envlist =
py36
py37
py38
py39
py310
py311
py312
py313

[testenv]
whitelist_externals =
Expand Down