mirror of https://github.com/MISP/PyMISP
Update pytest.yml for python 3.13
parent
317c0d149b
commit
06657719af
|
@ -13,7 +13,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
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:
|
steps:
|
||||||
|
|
||||||
|
@ -26,6 +26,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{matrix.python-version}}
|
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
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip poetry
|
python -m pip install --upgrade pip poetry
|
||||||
|
|
Loading…
Reference in New Issue