Skip to content

Commit

Permalink
Merge pull request #42 from tochka-public/feat/removing-package
Browse files Browse the repository at this point in the history
feat(node): Removed ulid python package
  • Loading branch information
Moootya authored Aug 13, 2024
2 parents 37fa3da + 877f255 commit cc2a0d0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
4 changes: 1 addition & 3 deletions ml_pipeline_engine/node/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import typing as t
import uuid

from ulid import ULID

from ml_pipeline_engine.logs import logger_node as logger
from ml_pipeline_engine.module_loading import get_instance
from ml_pipeline_engine.node.enums import NodeTag
Expand All @@ -21,7 +19,7 @@


def generate_pipeline_id() -> uuid.UUID:
return ULID().to_uuid()
return uuid.uuid4()


def generate_node_id(prefix: str, name: t.Optional[str] = None) -> str:
Expand Down
13 changes: 1 addition & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
[tool.poetry.dependencies]
python = "^3.8"
networkx = ">=3.1,<4.0"
python-ulid = ">=1.1.0,<2.0"
importlib-resources = "^6.4.0"
cachetools = "^5.3.3"
click = "^8.1.7"
Expand Down

0 comments on commit cc2a0d0

Please sign in to comment.