Skip to content

Commit

Permalink
Merge pull request #143 from macrocosm-os/dev
Browse files Browse the repository at this point in the history
Release 4.0.1.
  • Loading branch information
Sid-Data-Universe committed Aug 6, 2024
2 parents e81f1d0 + 9327e28 commit 9db1bad
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
Empty file added competitions/__init__.py
Empty file.
16 changes: 16 additions & 0 deletions competitions/data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from enum import IntEnum


class CompetitionId(IntEnum):
"""Unique identifiers for each competition."""

B7_MODEL = 0

M772_MODEL = 1

B3_MODEL = 2

# Overwrite the default __repr__, which doesn't work with
# bt.logging for some unknown reason.
def __repr__(self) -> str:
return f"{self.value}"
2 changes: 1 addition & 1 deletion constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# ---------------------------------

# Release
__version__ = "4.0.0"
__version__ = "4.0.1"

# Validator schema version
__validator_version__ = "3.0.0"
Expand Down

0 comments on commit 9db1bad

Please sign in to comment.