Skip to content

Commit

Permalink
chore: remove python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm88 committed Apr 12, 2024
1 parent db225e3 commit 69a3fe5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install tkinter for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y python3-tk

- name: Install PDM
run: python -m pip install pdm==2.13.3

Expand Down
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import numpy as np
import pandas as pd
import pytest
from pyoma2.algorithm import SSIcov_algo
from pyoma2.OMA import BaseSetup, MultiSetup_PoSER, MultiSetup_PreGER, SingleSetup

from .factory import FakeAlgorithm, FakeAlgorithm2, FakeResult, FakeRunParams
Expand Down Expand Up @@ -206,8 +207,6 @@ def multi_setup_poser_fixture(
multi_setup_data_fixture,
) -> typing.Generator[MultiSetup_PoSER, None, None]:
"""Fixture for MultiSetup Poser with parameters."""
from pyoma2.algorithm import SSIcov_algo

set1, set2, set3, *_ = multi_setup_data_fixture
ss1 = SingleSetup(set1, fs=100)
ss2 = SingleSetup(set2, fs=100)
Expand Down

0 comments on commit 69a3fe5

Please sign in to comment.