Skip to content

Commit 121bbf4

Browse files
committed
Preparing release (Removing torch module)
1 parent 6eccdb4 commit 121bbf4

File tree

10 files changed

+3
-784
lines changed

10 files changed

+3
-784
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ df = wr.db.read_sql_query("SELECT * FROM external_schema.my_table", con=engine)
8484
- [11 - CSV Datasets](https://github.com/awslabs/aws-data-wrangler/blob/master/tutorials/11%20-%20CSV%20Datasets.ipynb)
8585
- [12 - CSV Crawler](https://github.com/awslabs/aws-data-wrangler/blob/master/tutorials/12%20-%20CSV%20Crawler.ipynb)
8686
- [13 - Merging Datasets on S3](https://github.com/awslabs/aws-data-wrangler/blob/master/tutorials/13%20-%20Merging%20Datasets%20on%20S3.ipynb)
87-
- [14 - PyTorch](https://github.com/awslabs/aws-data-wrangler/blob/master/tutorials/14%20-%20PyTorch.ipynb)
8887
- [15 - EMR](https://github.com/awslabs/aws-data-wrangler/blob/dev/tutorials/15%20-%20EMR.ipynb)
8988
- [16 - EMR & Docker](https://github.com/awslabs/aws-data-wrangler/blob/dev/tutorials/16%20-%20EMR%20%26%20Docker.ipynb)
9089
- [**API Reference**](https://aws-data-wrangler.readthedocs.io/en/latest/api.html)

awswrangler/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@
66
"""
77

88
import logging
9-
from importlib.util import find_spec
109

1110
from awswrangler import athena, catalog, cloudwatch, db, emr, exceptions, s3 # noqa
1211
from awswrangler.__metadata__ import __description__, __license__, __title__, __version__ # noqa
1312
from awswrangler._utils import get_account_id # noqa
1413

15-
if find_spec("torch") and find_spec("torchvision") and find_spec("torchaudio") and find_spec("PIL"):
16-
from awswrangler import torch # noqa
17-
1814
logging.getLogger("awswrangler").addHandler(logging.NullHandler())

0 commit comments

Comments
 (0)