From bbc2409e2f5fa7b8cb31950834d6e8164ac45364 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 15:29:46 -0700 Subject: [PATCH 1/3] update matrix versions --- .github/workflows/main.yml | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e8d3f2..e3635eb 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 the versions here match the matrix in setup.py 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..d3a9fb8 100644 --- a/setup.py +++ b/setup.py @@ -42,10 +42,10 @@ 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', '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' From d8545598f23e6515df97832777745ffed3e073c3 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 15:33:29 -0700 Subject: [PATCH 2/3] bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d3a9fb8..df0abf0 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', From 712200fff6b81a8d6aeedf5ea2f815e820dcffe4 Mon Sep 17 00:00:00 2001 From: Joanna Ko Date: Wed, 16 Jul 2025 15:53:11 -0700 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: Artem Ustinov --- .github/workflows/main.yml | 2 +- setup.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e3635eb..06ff16d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +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 the versions here match the matrix in setup.py + # 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 df0abf0..4911696 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,8 @@ 'Intended Audience :: Information Technology', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: Apache Software License', + # 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',