Skip to content

Commit

Permalink
Merge pull request #37 from opentensor/spec_version_update
Browse files Browse the repository at this point in the history
version 1.0.4
  • Loading branch information
Eugene-hu authored Jun 9, 2023
2 parents 6add5d9 + 11de06a commit 923431e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions openvalidators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
from . import utils
from . import weights

__version__ = "1.0.2"
__spec_version__ = 1003
__version__ = "1.0.4"
version_split = __version__.split(".")
__spec_version__ = (1000 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))

0 comments on commit 923431e

Please sign in to comment.