From dea645c3fc000c03cb361553e681149066c55c2d Mon Sep 17 00:00:00 2001 From: Steven Braun Date: Mon, 11 Nov 2024 12:58:17 +0100 Subject: [PATCH] deps: remove unused icecream dependency --- main.py | 2 -- pyproject.toml | 1 - 2 files changed, 3 deletions(-) diff --git a/main.py b/main.py index 7e2f357..42598c0 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,6 @@ import numpy as np import tqdm -from icecream import install from args import parse_args from simple_einet.data import build_dataloader, get_data_shape @@ -14,7 +13,6 @@ from simple_einet.layers.distributions.piecewise_linear import PiecewiseLinear from simple_einet.utils import preprocess -install() import torch from torch.nn import functional as F diff --git a/pyproject.toml b/pyproject.toml index 78ac020..2d6e80d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,6 @@ app = [ "hydra_colorlog~=1.2.0", "wandb~=0.15.0", "rich~=13.0", - "icecream~=2.0", "hydra-core~=1.3.0" ]