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 7afb380 commit 9f60ad5Copy full SHA for 9f60ad5
semver.py
@@ -103,7 +103,7 @@ def parse(version):
103
104
# Only change it for Python > 3 as it is readonly
105
# for version 2
106
-if sys.version_info > (3,0):
+if sys.version_info > (3, 0):
107
VersionInfo.__doc__ = """
108
:param int major: version when you make incompatible API changes.
109
:param int minor: version when you add functionality in
setup.py
@@ -69,6 +69,7 @@ def read_file(filename):
69
with open(join(dirname(__file__), filename)) as f:
70
return f.read()
71
72
+
73
setup(
74
name=package.__name__,
75
version=package.__version__,
0 commit comments