Skip to content

Commit

Permalink
update package info (#768)
Browse files Browse the repository at this point in the history
* update info

* fix duplicate #733

* update Appveyor budge #626

* budge to master
  • Loading branch information
Borda committed Feb 1, 2020
1 parent 589815f commit 5e97e66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![PyPI Status](https://badge.fury.io/py/pytorch-lightning.svg)](https://badge.fury.io/py/pytorch-lightning)
[![PyPI Status](https://pepy.tech/badge/pytorch-lightning)](https://pepy.tech/project/pytorch-lightning)
[![Build Status](https://travis-ci.org/PytorchLightning/pytorch-lightning.svg?branch=master)](https://travis-ci.org/PytorchLightning/pytorch-lightning)
[![Build status](https://ci.appveyor.com/api/projects/status/NEW-PROJECT-ID?svg=true)](https://ci.appveyor.com/project/PytorchLightning/pytorch-lightning)
[![Build status](https://ci.appveyor.com/api/projects/status/nwr730s1qd9199g3/branch/master?svg=true)](https://ci.appveyor.com/project/PyTorchLightning/pytorch-lightning/branch/master)
[![Coverage](docs/source/_static/images/coverage.svg)](https://github.com/PytorchLightning/pytorch-lightning/tree/master/tests#running-coverage)
[![CodeFactor](https://www.codefactor.io/repository/github/borda/pytorch-lightning/badge)](https://www.codefactor.io/repository/github/borda/pytorch-lightning)

Expand Down
8 changes: 4 additions & 4 deletions pytorch_lightning/__init__.py
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__ = 'waf2107@columbia.edu'
__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." \
Expand All @@ -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:
Expand Down
1 change: 0 additions & 1 deletion pytorch_lightning/trainer/training_loop.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,6 @@ def optimizer_closure():

# track progress bar metrics
self.add_tqdm_metrics(progress_bar_metrics)
self.add_tqdm_metrics(progress_bar_metrics)
all_log_metrics.append(log_metrics)

# insert after step hook
Expand Down

0 comments on commit 5e97e66

Please sign in to comment.