From 7a02081c800f74af2d9fa298cf4593be599c04c8 Mon Sep 17 00:00:00 2001 From: rednafi Date: Tue, 15 Oct 2024 22:10:02 +0200 Subject: [PATCH] Python 3.13 and uv --- .github/workflows/build.yml | 4 +--- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 667cf21..5513525 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: [310, 311, 312] + python-version: [311, 312, 313] steps: - name: Checkout repository @@ -32,8 +32,6 @@ jobs: - name: Spin up container run: | sed -i "s/PYTHON_VERSION=.*/PYTHON_VERSION=${{ matrix.python-version }}/" '.env' - sed -i 's/PORT=.*/PORT=5002/' '.env' - echo "Building container for Python ${{ matrix.python-version }}." cat docker compose up -d diff --git a/pyproject.toml b/pyproject.toml index 0d59763..2e3459d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ show_error_codes = true pretty = true [[tool.mypy.overrides]] -module = "app.tests.*" +module = "svc.tests.*" ignore_errors = true #################################################