Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
gwinc
pygwinc
Commits
a101f0c4
Commit
a101f0c4
authored
Jan 05, 2021
by
Jameson Rollins
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'setuptools-bug' into 'master'
fix setuptools_scm LookupError bug See merge request
!120
parents
05370968
dab53f3b
Pipeline
#180823
passed with stages
in 2 minutes and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
gwinc/__init__.py
gwinc/__init__.py
+1
-1
No files found.
gwinc/__init__.py
View file @
a101f0c4
...
...
@@ -13,7 +13,7 @@ except ModuleNotFoundError:
__version__
=
setuptools_scm
.
get_version
(
fallback_version
=
'?.?.?'
)
# FIXME: fallback_version is not available in the buster version
# (3.2.0-1)
except
(
ModuleNotFoundError
,
TypeError
):
except
(
ModuleNotFoundError
,
TypeError
,
LookupError
):
__version__
=
'?.?.?'
from
.ifo
import
IFOS
from
.struct
import
Struct
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment