From ffe8637b7a1d1307a710855bffc005682a23e50b Mon Sep 17 00:00:00 2001 From: JosePizarro3 Date: Fri, 23 Aug 2024 13:59:35 +0200 Subject: [PATCH] Enforcing 3.11 for building --- .github/workflows/actions.yml | 8 ++------ .github/workflows/publish.yml | 8 ++------ .gitignore | 1 + 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 6aad546a..97408f7d 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -40,16 +40,12 @@ jobs: python -m pytest -sv tests build-and-install: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python_version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4 - - name: Set up Python ${{matrix.python_version}} + - name: Set up Python 3.11 uses: actions/setup-python@v5 with: - python-version: ${{matrix.python_version}} + python-version: 3.11 - name: Install uv run: | curl -LsSf https://astral.sh/uv/install.sh | sh diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a37ef1d2..b4dca467 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,16 +21,12 @@ env: jobs: deploy: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python_version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4 - - name: Set up Python ${{matrix.python_version}} + - name: Set up Python 3.11 uses: actions/setup-python@v5 with: - python-version: ${{matrix.python_version}} + python-version: 3.11 - name: Install uv run: | curl -LsSf https://astral.sh/uv/install.sh | sh diff --git a/.gitignore b/.gitignore index f2074f92..245ef87e 100644 --- a/.gitignore +++ b/.gitignore @@ -125,6 +125,7 @@ celerybeat.pid .env .venv .pyenv +.testenv env/ venv/ ENV/