diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 15866174b..a060f3c1d 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -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. -#### Using `launch.json`: +#### Using `launch.json` 1. Press `F5` or go to the **Run and Debug** view in VSCode. 2. Select the desired configuration: @@ -93,7 +93,7 @@ You can start and debug backend services either as debugging sessions via `launc - `Document Consumer` - `Celery` -#### Using Tasks: +#### Using Tasks 1. Open the command palette: - **Windows/Linux**: `Ctrl+Shift+P` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f55d679f..fb44f80c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -481,14 +481,14 @@ jobs: id: setup-python uses: actions/setup-python@v5 with: - python-version: + python-version: ${{ env.DEFAULT_PYTHON_VERSION }} - name: Install uv uses: astral-sh/setup-uv@v5 with: version: ${{ env.DEFAULT_UV_VERSION }} enable-cache: true - python-version: ${{ env.DEFAULT_PYTHON_VERSION }} + python-version: ${{ steps.setup-python.outputs.python-version }} - name: Install Python dependencies run: | diff --git a/pyproject.toml b/pyproject.toml index ad70cc3c7..07aad1e14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] 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" readme = "README.md" requires-python = ">=3.10"