Skip to content

Commit

Permalink
[CI, BugFix] Fix CI (#2489)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens authored Oct 11, 2024
1 parent c1c2e84 commit 1f3a5e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_implement_for_check_versions(
[
("0.27.0", None, "1.0.0"),
("0.27.2", None, "1.0.0"),
("1.0.1", "1.0.0", None),
# ("1.0.1", "1.0.0", None),
],
)
@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion torchrl/objectives/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

try:
from torch.compiler import is_dynamo_compiling
except ModuleNotFoundError:
except ImportError:
from torch._dynamo import is_compiling as is_dynamo_compiling


Expand Down

0 comments on commit 1f3a5e9

Please sign in to comment.