We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 699c563 commit f57f334Copy full SHA for f57f334
keras_lmu/version.py
@@ -1,5 +1,7 @@
1
# Automatically generated by nengo-bones, do not edit this file directly
2
3
+# pylint: disable=consider-using-f-string
4
+
5
"""KerasLMU version information.
6
7
We use semantic versioning (see http://semver.org/)
@@ -15,9 +17,8 @@
15
17
16
18
# use old string formatting, so that this can still run in Python <= 3.5
19
# (since this file is parsed in setup.py, before python_requires is applied)
-version = "{v}{dev}".format(
- v=".".join(str(v) for v in version_info),
20
- dev=(".dev%d" % dev) if dev is not None else "",
21
-)
+version = ".".join(str(v) for v in version_info)
+if dev is not None:
22
+ version += ".dev%d" % dev
23
24
copyright = "Copyright (c) 2019-2021 Applied Brain Research"
0 commit comments