Skip to content

Commit

Permalink
Add 21.3 as min version for update (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdent02 authored and bsavery committed Apr 14, 2017
1 parent 43af19f commit abc1696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon_updater_ops.py
Expand Up @@ -873,7 +873,7 @@ def register(bl_info):
# to skip showing for udpater; see code for function above.
# Set the min and max versions allowed to install.
# Optional, default None
updater.version_min_update = (0,0,0) # min install (>=) will install this and higher
updater.version_min_update = (21,3,0) # min install (>=) will install this and higher
# updater.version_min_update = None # if not wanting to define a min
updater.version_max_update = (999999,999999,999999) # max install (<) will install strictly anything lower
# updater.version_max_update = None # if not wanting to define a max
Expand Down

0 comments on commit abc1696

Please sign in to comment.