diff --git a/.circleci/unittest/windows/scripts/environment.yml b/.circleci/unittest/windows/scripts/environment.yml index 14a7eac016..1b954ecbc8 100644 --- a/.circleci/unittest/windows/scripts/environment.yml +++ b/.circleci/unittest/windows/scripts/environment.yml @@ -3,6 +3,7 @@ channels: dependencies: - codecov - pip + - setuptools == 58.0.4 - pip: - dataclasses - nltk diff --git a/torchtext/__init__.py b/torchtext/__init__.py index 331a3fd74a..015b51501f 100644 --- a/torchtext/__init__.py +++ b/torchtext/__init__.py @@ -7,7 +7,7 @@ _TORCH_HOME = os.getenv("TORCH_HOME") if _TORCH_HOME is None: - _TORCH_HOME = "~/.cache/torch" #default + _TORCH_HOME = "~/.cache/torch" # default _CACHE_DIR = os.path.expanduser(os.path.join(_TORCH_HOME, "text")) from . import data, datasets, experimental, functional, models, nn, transforms, utils, vocab