Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Jun 30, 2021
1 parent e78ba03 commit f1b7c89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
History
=======
2.4 (2021-06-30)
-----------------
* Remove a dependency issue. (#631)

2.3 (2021-06-20)
-----------------
* Support logging to comet.ml simutaneously.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def run(self):
history = history_file.read()

preparing_PyPI_package = 'sdist' in sys.argv or 'bdist_wheel' in sys.argv
version_git = version = '2.3'
version_git = version = '2.4'

if not preparing_PyPI_package:
if os.path.exists('.git'):
Expand Down
3 changes: 1 addition & 2 deletions tensorboardX/comet_utils.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
import logging
import json
import functools
from PIL import Image
from io import BytesIO
import numpy as np
from .summary import _clean_tag
try:
import comet_ml
comet_installed = True
from PIL import Image
except ImportError:
comet_installed = False
import torch


class CometLogger:
Expand Down

0 comments on commit f1b7c89

Please sign in to comment.