From 9d5341b6933808a6ebec6d69430687a25653dd1c Mon Sep 17 00:00:00 2001 From: eduardormorais Date: Thu, 18 Sep 2025 18:07:53 -0300 Subject: Feature - Changing the dependency management tool to uv. Updating the Python version and dependencies --- .github/workflows/python-pr-validation.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to '.github/workflows/python-pr-validation.yml') diff --git a/.github/workflows/python-pr-validation.yml b/.github/workflows/python-pr-validation.yml index 30f9969..070cd1d 100644 --- a/.github/workflows/python-pr-validation.yml +++ b/.github/workflows/python-pr-validation.yml @@ -14,17 +14,14 @@ jobs: - name: Set up Python 3.12 uses: actions/setup-python@v2 with: - python-version: "3.12" + python-version: "3.13" architecture: "x64" - name: Install dependencies run: | python3 -m pip install --upgrade pip - pip install poetry - pip install pytest - poetry lock - poetry config virtualenvs.create false - poetry install --with dev --no-interaction --no-ansi + pip install uv + uv pip install -e .[dev] - name: Python Run Tests run: | -- cgit v1.2.3