Browse Source

!692 Fix supported mindspore version Number in mindwizard.

Merge pull request !692 from moran/wizard_dev
tags/v1.0.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
65e7183181
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      mindinsight/wizard/conf/constants.py

+ 2
- 1
mindinsight/wizard/conf/constants.py View File

@@ -14,9 +14,10 @@
# ============================================================================ # ============================================================================
"""Constants module for wizard.""" """Constants module for wizard."""
import os import os
from mindinsight import __version__




TEMPLATES_BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'templates') TEMPLATES_BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'templates')
SUPPORT_MINDSPORE_VERSION = '0.7.0'
SUPPORT_MINDSPORE_VERSION = __version__


QUESTION_START = '>>> ' QUESTION_START = '>>> '

Loading…
Cancel
Save