Add Python 3.14 testing support to CI and setup.py

Co-authored-by: pacnpal <183241239+pacnpal@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-23 11:39:48 +00:00
parent b4bf6e48df
commit 20075475fe
2 changed files with 7 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ setup(
},
author="PacNPal",
author_email="pac@pacnp.al",
description="A modern Python package manager that combines pip install with requirements.txt management. Supports Python 3.11, 3.12, and 3.13.",
description="A modern Python package manager that combines pip install with requirements.txt management. Supports Python 3.8-3.14.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/PacNPal/pip-add",
@@ -29,9 +29,13 @@ setup(
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup",