We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a13ff9 commit 3fff9f8Copy full SHA for 3fff9f8
oatomobile/_metadata.py
@@ -15,14 +15,14 @@
15
"""Package metadata for OATomobile.
16
17
This is kept in a separate module so that it can be imported from
18
-setup.py, at a time when acme's dependencies may not have been installed
+setup.py, at a time when acme"s dependencies may not have been installed
19
yet.
20
"""
21
22
# We follow Semantic Versioning (https://semver.org/)
23
-_MAJOR_VERSION = '0'
24
-_MINOR_VERSION = '0'
25
-_PATCH_VERSION = '1'
+_MAJOR_VERSION = "0"
+_MINOR_VERSION = "1"
+_PATCH_VERSION = "0"
26
27
-# Example: '0.4.2'
28
-__version__ = '.'.join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])
+# Example: "0.4.2"
+__version__ = ".".join([_MAJOR_VERSION, _MINOR_VERSION, _PATCH_VERSION])
0 commit comments