Skip to content

Commit 62958f2

Browse files
committed
python version updates
1 parent f2a0b55 commit 62958f2

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@ classifiers = [
3232
"Programming Language :: Python",
3333
"Programming Language :: Python :: 3 :: Only",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
3735
"Programming Language :: Python :: 3.10",
3836
"Programming Language :: Python :: 3.11",
37+
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
39+
"Programming Language :: Python :: 3.14",
3940
"License :: OSI Approved :: MIT License",
4041
]
4142

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@
4747
"Programming Language :: Python",
4848
"Programming Language :: Python :: 3 :: Only",
4949
"Programming Language :: Python :: 3",
50-
"Programming Language :: Python :: 3.7",
51-
"Programming Language :: Python :: 3.8",
52-
"Programming Language :: Python :: 3.9",
5350
"Programming Language :: Python :: 3.10",
5451
"Programming Language :: Python :: 3.11",
5552
"Programming Language :: Python :: 3.12",
@@ -59,7 +56,7 @@
5956
],
6057
zip_safe=False,
6158
packages=find_packages(),
62-
python_requires=">=3.6",
59+
python_requires=">=3.10",
6360
install_requires=[],
6461
extras_require={
6562
"AzureMonitor": ["azure-monitor-events-extension<2.0.0"],

0 commit comments

Comments
 (0)