Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
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
1 change: 0 additions & 1 deletion packaging/torchtext/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ requirements:
- python
- requests
- tqdm
- regex
{{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}

build:
Expand Down
2 changes: 1 addition & 1 deletion torchtext/transforms.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import json
import re
from copy import deepcopy
from functools import lru_cache
from typing import Any, List, Mapping, Optional, Sequence, Tuple, Union

import regex as re
import torch
import torchtext # noqa: F401
from torch import Tensor
Expand Down