We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f168384 commit cc80764Copy full SHA for cc80764
1 file changed
stackdio/client/version.py
@@ -22,8 +22,12 @@
22
import re
23
import warnings
24
25
-from .exceptions import (IncompatibleVersionException,
26
- InvalidVersionStringException)
+# for setup.py
+try:
27
+ from .exceptions import (IncompatibleVersionException,
28
+ InvalidVersionStringException)
29
+except:
30
+ pass
31
32
33
def _unsupported_function(func, current_version, accepted_versions):
0 commit comments