mirror of https://github.com/MISP/PyMISP
Update pytest.yml for python 3.13
parent
317c0d149b
commit
06657719af
|
@ -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:
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue