-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
"""Package info""" | ||
"""Root package info.""" | ||
|
||
__version__ = '0.6.0' | ||
__version__ = '0.6.0.dev' | ||
__author__ = 'William Falcon et al.' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'Apache-2.0' | ||
__copyright__ = 'Copyright (c) 2018-2019, %s.' % __author__ | ||
__copyright__ = 'Copyright (c) 2018-2020, %s.' % __author__ | ||
__homepage__ = 'https://github.com/PyTorchLightning/pytorch-lightning' | ||
# this has to be simple string, see: https://github.com/pypa/twine/issues/522 | ||
__docs__ = "PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers." \ | ||
|
@@ -21,7 +21,7 @@ | |
|
||
if __LIGHTNING_SETUP__: | ||
import sys | ||
sys.stderr.write('Partial import of torchlightning during the build process.\n') | ||
sys.stderr.write('Partial import of `torchlightning` during the build process.\n') | ||
# We are not importing the rest of the scikit during the build | ||
# process, as it may not be compiled yet | ||
else: | ||
|
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