Commit 472bbec 1 parent 887d948 commit 472bbec Copy full SHA for 472bbec
File tree 2 files changed +1
-11
lines changed
2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -147,10 +147,8 @@ class and related decorators.
147
147
from . import tuple_util
148
148
149
149
# Runner API
150
- try :
150
+ if sys . version_info >= ( 3 , 7 ) :
151
151
from .metaflow_runner import Runner
152
- except RuntimeError :
153
- pass
154
152
155
153
__version_addl__ = []
156
154
_ext_debug ("Loading top-level modules" )
Original file line number Diff line number Diff line change 4
4
import asyncio
5
5
import tempfile
6
6
from typing import Dict , Optional
7
-
8
- if sys .version_info < (3 , 7 ):
9
- raise RuntimeError (
10
- """
11
- The Metaflow Programmatic API is not supported for versions of Python less than 3.7
12
- """
13
- )
14
-
15
7
from metaflow import Run
16
8
from metaflow .subprocess_manager import SubprocessManager , CommandManager
17
9
You can’t perform that action at this time.
0 commit comments