Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
name = "validmind"
version = "2.9.4"
description = "ValidMind Library"
readme = "README.pypi.md"
version = "2.9.3"
requires-python = ">=3.9,<3.13"
license = { file = "LICENSE" }
authors = [
Expand Down
2 changes: 1 addition & 1 deletion validmind/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.9.2"
__version__ = "2.9.4"
6 changes: 5 additions & 1 deletion validmind/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
import numpy as np
import pandas as pd
import polars as pl
import torch

try:
import torch # noqa: F401
except Exception:
torch = None # type: ignore # noqa: F401

from .api_client import log_input as log_input
from .client_config import client_config
Expand Down
Loading