Skip to content

Commit

Permalink
Update pytest.yml for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot authored Nov 11, 2024
1 parent 317c0d1 commit 0665771
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:

Expand All @@ -26,6 +26,11 @@ jobs:
with:
python-version: ${{matrix.python-version}}

- name: Install python 3.13 specific dependencies
if: ${{ matrix.python-version == '3.13' }}
run: |
sudo apt-get install -y build-essential python3-dev libfuzzy-dev
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip poetry
Expand Down

0 comments on commit 0665771

Please sign in to comment.