mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-05 07:10:19 +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="9.0+unknown.beta")
|