Small fixes Copilot caught

This commit is contained in:
Trenton H 2025-03-03 17:03:38 -08:00
parent ed91e8ab02
commit a7ae4e6a5d
3 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,7 @@ Once the DevContainer is up and running, perform the following steps:
You can start and debug backend services either as debugging sessions via `launch.json` or as tasks. You can start and debug backend services either as debugging sessions via `launch.json` or as tasks.
#### Using `launch.json`: #### Using `launch.json`
1. Press `F5` or go to the **Run and Debug** view in VSCode. 1. Press `F5` or go to the **Run and Debug** view in VSCode.
2. Select the desired configuration: 2. Select the desired configuration:
@ -93,7 +93,7 @@ You can start and debug backend services either as debugging sessions via `launc
- `Document Consumer` - `Document Consumer`
- `Celery` - `Celery`
#### Using Tasks: #### Using Tasks
1. Open the command palette: 1. Open the command palette:
- **Windows/Linux**: `Ctrl+Shift+P` - **Windows/Linux**: `Ctrl+Shift+P`

View File

@ -481,14 +481,14 @@ jobs:
id: setup-python id: setup-python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- -
name: Install uv name: Install uv
uses: astral-sh/setup-uv@v5 uses: astral-sh/setup-uv@v5
with: with:
version: ${{ env.DEFAULT_UV_VERSION }} version: ${{ env.DEFAULT_UV_VERSION }}
enable-cache: true enable-cache: true
python-version: ${{ env.DEFAULT_PYTHON_VERSION }} python-version: ${{ steps.setup-python.outputs.python-version }}
- -
name: Install Python dependencies name: Install Python dependencies
run: | run: |

View File

@ -1,6 +1,6 @@
[project] [project]
name = "paperless-ngx" name = "paperless-ngx"
version = "0.1.0" version = "2.14.7"
description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents" description = "A community-supported supercharged version of paperless: scan, index and archive all your physical documents"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"