mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2026-07-11 04:43:55 -07:00
Compare commits
No commits in common. "main" and "v2.0.0" have entirely different histories.
6 changed files with 480 additions and 446 deletions
2
.github/workflows/python-publish.yml
vendored
2
.github/workflows/python-publish.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up Python
|
- 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"]
|
python-version: ["3.10", "3.11", "3.13", "3.14"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v7
|
- uses: actions/checkout@v6
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v6
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.14.6-slim
|
FROM python:3.14.4-slim
|
||||||
|
|
||||||
# Set environment variables
|
# Set environment variables
|
||||||
ENV PYTHONUNBUFFERED=1 \
|
ENV PYTHONUNBUFFERED=1 \
|
||||||
|
|
|
||||||
|
|
@ -259,7 +259,7 @@ To install `repo-to-text` locally for development, follow these steps:
|
||||||
- Python >= 3.10
|
- Python >= 3.10
|
||||||
- Core dependencies:
|
- Core dependencies:
|
||||||
- setuptools >= 70.0.0
|
- setuptools >= 70.0.0
|
||||||
- pathspec >= 1.0.4
|
- pathspec >= 0.12.1
|
||||||
- argparse >= 1.4.0
|
- argparse >= 1.4.0
|
||||||
- PyYAML >= 6.0.1
|
- PyYAML >= 6.0.1
|
||||||
|
|
||||||
|
|
@ -273,7 +273,6 @@ For development, additional packages are required:
|
||||||
- isort
|
- isort
|
||||||
- build
|
- build
|
||||||
- twine
|
- twine
|
||||||
- pylint
|
|
||||||
|
|
||||||
### Running Tests
|
### 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]
|
[build-system]
|
||||||
requires = ["hatchling>=1.30.1"]
|
requires = ["hatchling"]
|
||||||
build-backend = "hatchling.build"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "repo-to-text"
|
name = "repo-to-text"
|
||||||
version = "2.0.2"
|
version = "2.0.0"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Kirill Markin", email = "markinkirill@gmail.com" },
|
{ name = "Kirill Markin", email = "markinkirill@gmail.com" },
|
||||||
]
|
]
|
||||||
|
|
@ -48,3 +48,5 @@ dev = [
|
||||||
disable = [
|
disable = [
|
||||||
"C0303",
|
"C0303",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue