-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ranamihir/type-hinting
Minor updates.
- Loading branch information
Showing
8 changed files
with
83 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
setup( | ||
# Application info | ||
name="pytorch_common", | ||
version="1.4", | ||
version="1.5", | ||
author="Mihir Rana", | ||
author_email="[email protected]", | ||
description="Repo for common PyTorch code", | ||
|
@@ -15,16 +15,16 @@ | |
install_requires=[ | ||
"numpy>=1.17.2", | ||
"pandas>=0.24.0", | ||
"matplotlib>=3.2.1", | ||
"dask[dataframe]==2.21.0", | ||
"matplotlib>=3.3.2", | ||
"dask[dataframe]>=2.30.0", | ||
"toolz==0.10.0", | ||
"scikit-learn>=0.22.1", | ||
"dill==0.3.2", | ||
"dill>=0.3.3", | ||
"munch>=2.5.0", | ||
"locket==0.2.0", | ||
], | ||
# Optional dependencies | ||
extras_require={"nlp": ["transformers>=3.0.2"]}, # for NLP related projects | ||
extras_require={"nlp": ["transformers==4.9.2"]}, # for NLP related projects | ||
# Add config and sql files to the package | ||
# https://python-packaging.readthedocs.io/en/latest/non-code-files.html | ||
include_package_data=True, | ||
|