File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ Integration and unit tests are provided.
5353
5454## Changelog
5555
56- ** v3.0.24 - TBD**
57-
58- + TBD
56+ ** v3.0.24 - 2016 Jan 08**
5957
58+ + Add environment variable override for ` NO_SSL_VALIDATION ` .
59+
6060** v3.0.23 - 2015 Oct 26**
6161
6262 + Fix for python bug on Windows loading mimetypes module (http://bugs.python.org/issue23371 ) thanks to @patrickwolf .
Original file line number Diff line number Diff line change 1717
1818setup (
1919 name = 'shotgun_api3' ,
20- version = '3.0.23 ' ,
20+ version = '3.0.24 ' ,
2121 description = 'Shotgun Python API ' ,
2222 long_description = readme ,
2323 author = 'Shotgun Software' ,
Original file line number Diff line number Diff line change 6767SG_TIMEZONE = SgTimezone ()
6868
6969
70+ NO_SSL_VALIDATION = False
7071try :
7172 import ssl
72- NO_SSL_VALIDATION = False
73+ if os .environ .get ("SHOTGUN_DISABLE_SSL_VALIDATION" , False ):
74+ NO_SSL_VALIDATION = True
7375except ImportError :
7476 LOG .debug ("ssl not found, disabling certificate validation" )
7577 NO_SSL_VALIDATION = True
7678
7779# ----------------------------------------------------------------------------
7880# Version
79- __version__ = "3.0.24.dev "
81+ __version__ = "3.0.24"
8082
8183# ----------------------------------------------------------------------------
8284# Errors
You can’t perform that action at this time.
0 commit comments