File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ per-file-ignores =
25
25
torchrl/objectives/td3.py: TOR101
26
26
torchrl/objectives/value/advantages.py: TOR101
27
27
tutorials/*/**.py: T201
28
- build_tools/setup_helpers/extension.py: T201
29
28
examples/*.py: T201
30
29
test/opengl_rendering.py: T201
31
30
*/**/run-clang-format.py: T201
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ def _main(argv):
182
182
if is_nightly :
183
183
tensordict_dep = "tensordict-nightly"
184
184
else :
185
- tensordict_dep = "tensordict>=0.9 .0,<0.10 .0"
185
+ tensordict_dep = "tensordict>=0.10 .0,<0.11 .0"
186
186
187
187
if is_nightly :
188
188
version = get_nightly_version ()
Original file line number Diff line number Diff line change 16
16
from typing import Callable
17
17
18
18
import torch
19
- from tensordict import PersistentTensorDict , TensorDict , is_non_tensor
19
+ from tensordict import is_non_tensor , PersistentTensorDict , TensorDict
20
20
from torchrl ._utils import KeyDependentDefaultDict , logger as torchrl_logger
21
21
from torchrl .data .datasets .common import BaseDatasetExperienceReplay
22
22
from torchrl .data .datasets .utils import _get_root_dir
You can’t perform that action at this time.
0 commit comments