Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
Fix auto-update by changing version requirements to 1.5.1
  • Loading branch information
userhasaccess authored Sep 18, 2024
1 parent 0ede3f9 commit bac9db2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import string

# Define the version of the template module.
__version__ = "1.5.0"
__minimal_miner_version__ = "1.4.9"
__minimal_validator_version__ = "1.5.0"
__version__ = "1.5.1"
__minimal_miner_version__ = "1.5.1"
__minimal_validator_version__ = "1.5.1"

version_split = __version__.split(".")
__version_as_int__ = (100 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))
Expand Down

0 comments on commit bac9db2

Please sign in to comment.