Skip to content

Commit

Permalink
force ubuntu 22.04
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Heumos <[email protected]>
  • Loading branch information
Zethson committed Feb 21, 2025
1 parent 07b8fc2 commit f66722d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-22.04 # ubuntu-latest is currently broken for joblib
python: "3.12"
run_mode: "slow"
- os: ubuntu-latest
- os: ubuntu-22.04
python: "3.12"
run_mode: "fast"
# - os: ubuntu-latest
Expand Down
4 changes: 0 additions & 4 deletions pertpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@

import warnings

import joblib
from matplotlib import MatplotlibDeprecationWarning
from numba import NumbaDeprecationWarning

# Loky seems to be broken at the moment
joblib.parallel.DEFAULT_BACKEND = "multiprocessing"

warnings.filterwarnings("ignore", category=NumbaDeprecationWarning)
warnings.filterwarnings("ignore", category=MatplotlibDeprecationWarning)
warnings.filterwarnings("ignore", category=SyntaxWarning)
Expand Down

0 comments on commit f66722d

Please sign in to comment.