Browse Source

Fix supported mindspore version Number in mindwizard

tags/v1.0.0
moran 5 years ago
parent
commit
6a6b4b38ce
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."""
import os
from mindinsight import __version__


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 = '>>> '

Loading…
Cancel
Save