Merge pull request #2 from pacnpal/copilot/test-against-latest-python-versions

This commit is contained in:
pacnpal
2026-01-23 06:41:32 -05:00
committed by GitHub
2 changed files with 7 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python test for 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 name: Python test for 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.14
on: on:
push: push:
@@ -16,7 +16,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -15,7 +15,7 @@ setup(
}, },
author="PacNPal", author="PacNPal",
author_email="pac@pacnp.al", 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=open('README.md').read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://github.com/PacNPal/pip-add", url="https://github.com/PacNPal/pip-add",
@@ -29,9 +29,13 @@ setup(
"Natural Language :: English", "Natural Language :: English",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 3", "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.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup", "Topic :: System :: Installation/Setup",