Skip to content

Commit

Permalink
Merge branch 'master' into doc
Browse files Browse the repository at this point in the history
  • Loading branch information
typemytype committed Dec 17, 2019
2 parents c6a000f + 48dc7ad commit b51457a
Show file tree
Hide file tree
Showing 2 changed files with 186 additions and 45 deletions.
225 changes: 181 additions & 44 deletions Documentation/source/conf.py

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion Lib/vanilla/vanillaBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ class VanillaError(Exception): pass
# OS Version Constants
# --------------------

osVersionCurrent = StrictVersion(platform.mac_ver()[0])
macVersion = platform.mac_ver()[0]
if platform.system() != "Darwin":
macVersion = "0.0"
osVersionCurrent = StrictVersion(macVersion)
osVersion10_15 = StrictVersion("10.15")
osVersion10_14 = StrictVersion("10.14")
osVersion10_13 = StrictVersion("10.13")
osVersion10_12 = StrictVersion("10.12")
Expand Down

0 comments on commit b51457a

Please sign in to comment.