mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2026-07-10 20:33:55 -07:00
Compare commits
11 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
809a3bbc19 | ||
|
|
d85c93c5bb | ||
|
|
28b0eaf549 | ||
|
|
3baa082fae | ||
|
|
9673b82966 | ||
|
|
7a08f32bfd | ||
|
|
acf449cc9d | ||
|
|
370e27704e | ||
|
|
364848dd73 | ||
|
|
ae67657e92 | ||
|
|
5a600c424f |
6 changed files with 446 additions and 480 deletions
2
.github/workflows/python-publish.yml
vendored
2
.github/workflows/python-publish.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Python
|
||||
|
|
|
|||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
python-version: ["3.10", "3.11", "3.13", "3.14"]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: actions/checkout@v7
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:3.14.4-slim
|
||||
FROM python:3.14.6-slim
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONUNBUFFERED=1 \
|
||||
|
|
|
|||
|
|
@ -259,7 +259,7 @@ To install `repo-to-text` locally for development, follow these steps:
|
|||
- Python >= 3.10
|
||||
- Core dependencies:
|
||||
- setuptools >= 70.0.0
|
||||
- pathspec >= 0.12.1
|
||||
- pathspec >= 1.0.4
|
||||
- argparse >= 1.4.0
|
||||
- PyYAML >= 6.0.1
|
||||
|
||||
|
|
@ -273,6 +273,7 @@ For development, additional packages are required:
|
|||
- isort
|
||||
- build
|
||||
- twine
|
||||
- pylint
|
||||
|
||||
### Running Tests
|
||||
|
||||
|
|
|
|||
911
poetry.lock
generated
911
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,10 +1,10 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
requires = ["hatchling>=1.30.1"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "repo-to-text"
|
||||
version = "2.0.0"
|
||||
version = "2.0.2"
|
||||
authors = [
|
||||
{ name = "Kirill Markin", email = "markinkirill@gmail.com" },
|
||||
]
|
||||
|
|
@ -48,5 +48,3 @@ dev = [
|
|||
disable = [
|
||||
"C0303",
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue