mirror of
https://github.com/m-labs/artiq.git
synced 2025-01-08 01:53:34 +08:00
8 lines
176 B
Python
8 lines
176 B
Python
import os
|
|
|
|
def get_rev():
|
|
return os.getenv("VERSIONEER_REV", default="unknown")
|
|
|
|
def get_version():
|
|
return os.getenv("VERSIONEER_OVERRIDE", default="8.0+unknown.beta")
|