Skip to content

Commit 4b4c28d

Browse files
committed
Move progressbar code to its own module and rename functions
1 parent 8550644 commit 4b4c28d

File tree

17 files changed

+478
-444
lines changed

17 files changed

+478
-444
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
tests/distributions/test_shape_utils.py
7070
tests/distributions/test_mixture.py
7171
tests/test_testing.py
72+
tests/test_progress_bar.py
7273
7374
- |
7475
tests/distributions/test_continuous.py

pymc/backends/arviz.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@
3939
import pymc
4040

4141
from pymc.model import Model, modelcontext
42+
from pymc.progress_bar import CustomProgress
4243
from pymc.pytensorf import PointFunc, extract_obs_data
43-
from pymc.util import CustomProgress, default_progress_theme, get_default_varnames
44+
from pymc.util import default_progress_theme, get_default_varnames
4445

4546
if TYPE_CHECKING:
4647
from pymc.backends.base import MultiTrace

0 commit comments

Comments
 (0)