Compare commits

...

12 commits

Author SHA1 Message Date
Kirill Markin
d6c43e6990
Merge pull request #43 from kirill-markin/codex/security-dependency-release-2.0.0
Some checks failed
Run Tests / test (3.10) (push) Has been cancelled
Run Tests / test (3.11) (push) Has been cancelled
Run Tests / test (3.13) (push) Has been cancelled
Run Tests / test (3.14) (push) Has been cancelled
Prepare security dependency release
2026-06-03 10:40:50 +02:00
Kirill Markin
6e64031b85
Prepare security dependency release 2026-06-03 10:39:33 +02:00
Kirill Markin
eff5a5449f
Update poetry lockfile dependencies (#42) 2026-05-11 07:26:22 +02:00
Kirill Markin
a4dcaf7b2d
Merge pull request #41 from kirill-markin/codex/update-dependency-drift-20260508-ebbd
Refresh dependency lock
2026-05-08 09:24:00 +02:00
Kirill Markin
655d574d5b
Refresh dependency lock 2026-05-08 09:22:07 +02:00
Kirill Markin
2dd9d67dab
Merge pull request #40 from kirill-markin/codex/refresh-poetry-lock-20260507-8ca6
[codex] Refresh Poetry lock
2026-05-07 08:41:01 +02:00
Kirill Markin
185f7142e4
Refresh Poetry lock 2026-05-07 08:40:54 +02:00
Kirill Markin
8ab6b6b182
Merge pull request #39 from kirill-markin/codex/dependency-drift-20260506-repo-to-text
Pin Python Docker image patch version
2026-05-06 07:19:56 +02:00
Kirill Markin
d2b7203431
Pin Python Docker image patch version 2026-05-06 07:18:58 +02:00
Kirill Markin
ab760149e0
Merge pull request #38 from kirill-markin/codex/update-dependency-drift-2026-05-01
[codex] Update dependency drift
2026-05-01 12:26:57 +02:00
Kirill Markin
43fd8614da
Update dependency drift 2026-05-01 12:25:50 +02:00
Kirill Markin
92612a4493
Update dependency drift (#37) 2026-04-30 08:24:01 +02:00
5 changed files with 809 additions and 707 deletions

View file

@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6

View file

@ -1,4 +1,4 @@
FROM python:3.14-slim
FROM python:3.14.4-slim
# Set environment variables
ENV PYTHONUNBUFFERED=1 \

View file

@ -256,7 +256,7 @@ To install `repo-to-text` locally for development, follow these steps:
### Requirements
- Python >= 3.6
- Python >= 3.10
- Core dependencies:
- setuptools >= 70.0.0
- pathspec >= 0.12.1

1506
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -4,13 +4,13 @@ build-backend = "hatchling.build"
[project]
name = "repo-to-text"
version = "1.0.1"
version = "2.0.0"
authors = [
{ name = "Kirill Markin", email = "markinkirill@gmail.com" },
]
description = "Convert a directory structure and its contents into a single text file, including the tree output and file contents in structured XML format. It may be useful to chat with LLM about your code."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",