Skip to content

Commit

Permalink
fix: remove deprecated distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyPlanden committed Jun 17, 2024
1 parent 7d637d3 commit 820cb77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/plotting/test_plotly_manager.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import subprocess
from distutils.spawn import find_executable
from importlib.metadata import distributions
from shutil import which

import numpy as np
import plotly
Expand All @@ -10,7 +10,7 @@
from pybop import PlotlyManager

# Find the Python executable
python_executable = find_executable("python")
python_executable = which("python")


@pytest.fixture(scope="session")
Expand Down

0 comments on commit 820cb77

Please sign in to comment.