mirror of
https://github.com/m-labs/artiq.git
synced 2025-02-07 16:15:22 +08:00
9 lines
178 B
Python
9 lines
178 B
Python
import os
|
|
|
|
def get_rev():
|
|
return os.getenv("VERSIONEER_REV", default="unknown")
|
|
|
|
def get_version():
|
|
return os.getenv("VERSIONEER_OVERRIDE", default="10.0+unknown.beta")
|
|
|