1010# Latest released tag for the Enterprise Docker images. Update this in one
1111# place; reference it in docs with {{ enterprise_tag }}. Can be overridden at
1212# build time with the ENTERPRISE_TAG environment variable.
13- ENTERPRISE_TAG = os .environ .get ("ENTERPRISE_TAG" , "v2026-06-04 " )
13+ ENTERPRISE_TAG = os .environ .get ("ENTERPRISE_TAG" , "v2026-06-12 " )
1414
1515
1616def define_env (env ):
@@ -22,12 +22,12 @@ def _validate_link(href, page):
2222 parsed = urlparse (href )
2323 path = parsed .path
2424
25- if not path .endswith (' .md' ) or path .startswith (' http' ):
25+ if not path .endswith (" .md" ) or path .startswith (" http" ):
2626 return
2727
2828 page_dir = posixpath .dirname (page .file .src_path )
2929 resolved = posixpath .normpath (posixpath .join (page_dir , path ))
30- abs_path = os .path .join (env .conf [' docs_dir' ], resolved )
30+ abs_path = os .path .join (env .conf [" docs_dir" ], resolved )
3131
3232 if not os .path .isfile (abs_path ):
3333 log .warning (
@@ -42,22 +42,22 @@ def _resolve_link(href, page):
4242 parsed = urlparse (href )
4343 path = parsed .path
4444
45- if not path .endswith (' .md' ) or path .startswith (' http' ):
45+ if not path .endswith (" .md" ) or path .startswith (" http" ):
4646 return href
4747
4848 # Get the directory of the current page source
4949 page_dir = posixpath .dirname (page .file .src_path )
5050 # Resolve the relative path
5151 resolved = posixpath .normpath (posixpath .join (page_dir , path ))
5252 # Convert .md to trailing slash
53- resolved = resolved .replace (' .md' , '/' )
53+ resolved = resolved .replace (" .md" , "/" )
5454 # Handle index files
55- if resolved .endswith (' /index/' ):
56- resolved = resolved [:- len (' index/' )]
55+ if resolved .endswith (" /index/" ):
56+ resolved = resolved [: - len (" index/" )]
5757
58- url = '/' + resolved
58+ url = "/" + resolved
5959 if parsed .fragment :
60- url += '#' + parsed .fragment
60+ url += "#" + parsed .fragment
6161 return url
6262
6363 @env .macro
@@ -74,7 +74,7 @@ def next_steps_links(links):
7474 </div>
7575 """ )
7676 rendered = "\n " .join (rendered )
77- return f''' <div class="grid">{ rendered } </div>'''
77+ return f""" <div class="grid">{ rendered } </div>"""
7878
7979 @env .macro
8080 def card_grid (cards ):
@@ -94,4 +94,4 @@ def card_grid(cards):
9494 </div>
9595 """ )
9696 rendered = "\n " .join (rendered )
97- return f''' <div class="grid">{ rendered } </div>'''
97+ return f""" <div class="grid">{ rendered } </div>"""
0 commit comments