From 4a4a379ecebfc24b412b34d6bda6bbf1e7cf6a71 Mon Sep 17 00:00:00 2001 From: Rohan9920 Date: Wed, 29 Oct 2025 23:59:47 -0500 Subject: [PATCH] Added 3.14 and removed 3.9 --- .github/workflows/python-app.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index b4a27bb..575ede5 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10","3.11","3.12","3.13"] + python-version: ["3.10","3.11","3.12","3.13","3.14"] os: [ubuntu-20.04, macOS-latest] steps: diff --git a/setup.py b/setup.py index 1d4009b..5835986 100644 --- a/setup.py +++ b/setup.py @@ -22,13 +22,13 @@ def read(fname): "tracer","dict-key-path-finder" ], install_requires=["click"], - python_requires=">=3.9", + python_requires=">=3.10", classifiers=[ - "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", + "Programming Language :: Python :: 3.14", "Operating System :: OS Independent", ], include_package_data=True,