Skip to content

Commit cdcd9e5

Browse files
author
root
committed
drop support for Python 3.8/3.9, require 3.10+
1 parent c4d8a57 commit cdcd9e5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: ["3.8", "3.13"]
23+
python-version: ["3.10", "3.13"]
2424
include:
2525
- os: ubuntu-latest
2626
python-version: "3.13"

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "gitingest"
33
version = "0.3.1"
44
description="CLI tool to analyze and create text dumps of codebases for LLMs"
55
readme = {file = "README.md", content-type = "text/markdown" }
6-
requires-python = ">= 3.8"
6+
requires-python = ">= 3.10"
77
dependencies = [
88
"click>=8.0.0",
99
"gitpython>=3.1.0",
@@ -27,8 +27,6 @@ classifiers=[
2727
"Development Status :: 3 - Alpha",
2828
"Intended Audience :: Developers",
2929
"License :: OSI Approved :: MIT License",
30-
"Programming Language :: Python :: 3.8",
31-
"Programming Language :: Python :: 3.9",
3230
"Programming Language :: Python :: 3.10",
3331
"Programming Language :: Python :: 3.11",
3432
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)