Skip to content

Commit

Permalink
Merge pull request #22 from epinzur/fix-distutils
Browse files Browse the repository at this point in the history
fixed issues with distutils
  • Loading branch information
epinzur authored Jun 21, 2024
2 parents 9a5c826 + 734b95b commit e9b2ec4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ragulate/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# this must be imported first for dynamic module loading to function properly
import setuptools # isort: skip
import argparse

from dotenv import load_dotenv
Expand Down
2 changes: 2 additions & 0 deletions ragulate/pipelines/base_pipeline.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import importlib.util
import inspect
import traceback
from abc import ABC, abstractmethod
from typing import Any, Dict, List

Expand Down Expand Up @@ -96,6 +97,7 @@ def __init__(
logger.fatal(
f"Issue loading recipe {self.recipe_name} on {self.script_path}/{self.method_name} with passed ingredients: {self._passed_ingredients}: {e}"
)
traceback.print_exc()
exit(1)

def get_method(self):
Expand Down

0 comments on commit e9b2ec4

Please sign in to comment.