mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-12 10:33:21 +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")
|