drop support for Python 3.8/3.9, require 3.10+

This commit is contained in:
root 2025-08-12 17:07:24 +02:00 committed by Nicolas Iragne
parent 4a64fb4cd3
commit 81fdf80bc8
No known key found for this signature in database
GPG key ID: D84FF5BF42D389CA
2 changed files with 2 additions and 4 deletions

View file

@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.13"]
python-version: ["3.10", "3.13"]
include:
- os: ubuntu-latest
python-version: "3.13"

View file

@ -3,7 +3,7 @@ name = "gitingest"
version = "0.3.1"
description="CLI tool to analyze and create text dumps of codebases for LLMs"
readme = {file = "README.md", content-type = "text/markdown" }
requires-python = ">= 3.8"
requires-python = ">= 3.10"
dependencies = [
"click>=8.0.0",
"gitpython>=3.1.0",
@ -27,8 +27,6 @@ classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT 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",