""" Decentralized storage grid. community web site: U{https://tahoe-lafs.org/} """ __all__ = [ "__version__", "full_version", "branch", "__appname__", "__full_version__", ] __version__ = "unknown" try: # type ignored as it fails in CI # (https://app.circleci.com/pipelines/github/tahoe-lafs/tahoe-lafs/1647/workflows/60ae95d4-abe8-492c-8a03-1ad3b9e42ed3/jobs/40972) from allmydata._version import __version__ # type: ignore except ImportError: # We're running in a tree that hasn't run update_version, and didn't # come with a _version.py, so we don't know what our version is. # This should not happen very often. pass full_version = "unknown" branch = "unknown" try: # type ignored as it fails in CI # (https://app.circleci.com/pipelines/github/tahoe-lafs/tahoe-lafs/1647/workflows/60ae95d4-abe8-492c-8a03-1ad3b9e42ed3/jobs/40972) from allmydata._version import full_version, branch # type: ignore except ImportError: # We're running in a tree that hasn't run update_version, and didn't # come with a _version.py, so we don't know what our full version or # branch is. This should not happen very often. pass __appname__ = "tahoe-lafs" # __full_version__ is the one that you ought to use when identifying yourself # in the "application" part of the Tahoe versioning scheme: # https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Versioning __full_version__ = __appname__ + '/' + str(__version__) # Monkey-patch 3rd party libraries: from ._monkeypatch import patch patch() del patch # On Python 3, turn BytesWarnings into exceptions. This can have potential # production impact... if BytesWarnings are actually present in the codebase. # Given that this has been enabled before Python 3 Tahoe-LAFS was publicly # released, no such code should exist, and this will ensure it doesn't get # added either. # # Also note that BytesWarnings only happen if Python is run with -b option, so # in practice this should only affect tests. import warnings # Error on BytesWarnings, to catch things like str(b""), but only for # allmydata code. warnings.filterwarnings("error", category=BytesWarning, module=".*allmydata.*")