diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e8d3f2..06ff16d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,6 +30,7 @@ jobs: # TODO: Enable Windows and macos # https://jira.eng.vmware.com/browse/MONIT-30833 os: [ubuntu-latest] # , macos-latest, windows-latest] + # Please make sure to update the classifiers in setup.py to match. python_version: ['3.10', '3.11', '3.12', '3.13'] runs-on: ${{ matrix.os }} steps: diff --git a/setup.py b/setup.py index c33253e..4911696 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name='wavefront-sdk-python', - version='2.1.3', # Please update with each pull request. + version='2.1.4', # Please update with each pull request. author='VMware Aria Operations for Applications Team', url='https://github.com/wavefrontHQ/wavefront-sdk-python', license='Apache-2.0', @@ -42,10 +42,12 @@ 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', + # Please make sure versions here match the workflow matrix + # in .github/workflows/main.yml#L33 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Monitoring', 'Topic :: System :: Networking :: Monitoring'