Skip to content
Snippets Groups Projects
Commit c2e8a9de authored by René Schöne's avatar René Schöne
Browse files

Version 0.3.0

parent e9766100
No related branches found
No related tags found
1 merge request!5Testing incremental dependency tracking.
Pipeline #9500 passed
/docs/ragdoc/
__pycache__
import subprocess
def get_version():
proc = subprocess.run('./gradlew printVersion --quiet',
shell=True,
capture_output=True,
text=True,
cwd='..')
return proc.stdout
def define_env(env):
"""
This is the hook for defining variables, macros and filters
- variables: the dictionary that contains the environment variables
- macro: a decorator function, to declare a macro.
"""
env.conf['site_name'] = 'RagConnect ' + get_version()
@env.macro
def ragconnect_version():
return get_version()
if __name__ == '__main__':
print(get_version())
site_name: RagConnect Documentation
site_name: RagConnect
nav:
- use_cases.md
- adding.md
......
#Tue Jan 19 12:08:02 CET 2021
version=0.2.5
#Wed Apr 14 09:40:24 CEST 2021
version=0.3.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment