Skip to content

Commit

Permalink
Merge pull request #469 from tonybaloney/flag_312
Browse files Browse the repository at this point in the history
Test and mark Python 3.12 support. Update setuptools support for >67
  • Loading branch information
nechvatalp authored Nov 20, 2023
2 parents e2ff1db + 4ff8a5f commit b603def
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
Expand Down
6 changes: 0 additions & 6 deletions azure-devops/azure/__init__.py

This file was deleted.

2 changes: 0 additions & 2 deletions azure-devops/azure/devops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import pkg_resources
pkg_resources.declare_namespace(__name__)
5 changes: 3 additions & 2 deletions azure-devops/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

NAME = "azure-devops"
VERSION = "7.1.0b3"
Expand All @@ -30,6 +30,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
]

Expand All @@ -43,7 +44,7 @@
keywords=["Microsoft", "VSTS", "Team Services", "SDK", "AzureTfs", "AzureDevOps", "DevOps"],
install_requires=REQUIRES,
classifiers=CLASSIFIERS,
packages=find_packages(),
packages=find_namespace_packages(),
include_package_data=True,
python_requires=">=3.7",
long_description="Azure DevOps Python clients"
Expand Down

0 comments on commit b603def

Please sign in to comment.