Skip to content

Commit

Permalink
Rename modules (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
durandtibo authored Sep 16, 2023
1 parent 03c6b5b commit c8fa8cf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hya"
version = "0.0.13"
version = "0.0.14a0"
description = "A library of custom OmegaConf resolvers"
readme = "README.md"
authors = ["Thibaut Durand <durand.tibo+gh@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/hya/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
if is_braceexpand_available():
from hya import braceexpand_ # noqa: F401
if is_torch_available():
from hya import pytorch # noqa: F401
from hya import torch_ # noqa: F401
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/unit/test_pytorch.py → tests/unit/test_torch.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pytest import fixture, mark, raises

from hya import is_torch_available, register_resolvers
from hya.pytorch import get_dtypes
from hya.torch_ import get_dtypes

if is_torch_available():
import torch
Expand Down

0 comments on commit c8fa8cf

Please sign in to comment.