Skip to content

Commit

Permalink
removed deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
KuuCi committed Jan 22, 2024
1 parent 851bc40 commit 4d01cab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer/trainer/trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,8 @@ def __init__(
):

# Check if the current Python version is compatible
major, minor = sys.version_info[0], sys.version_info[1]
assert (major == 3 and minor <= 8) or (major < 3), f"Python version {major}.{minor} is not supported. Please use Python 3.9 or higher."
# major, minor = sys.version_info[0], sys.version_info[1]
# assert (major == 3 and minor <= 8) or (major < 3), f"Python version {major}.{minor} is not supported. Please use Python 3.9 or higher."

self.auto_log_hparams = auto_log_hparams
self.python_log_level = python_log_level
Expand Down

0 comments on commit 4d01cab

Please sign in to comment.