Skip to content

Commit

Permalink
chore: upgrade versioneer to support python 3.12 (#16)
Browse files Browse the repository at this point in the history
Package installation was failing on python 3.12.
Upgrade versioneer to fix this.

Fixes #15
  • Loading branch information
alubbock authored Aug 17, 2024
1 parent 598a073 commit 74d06ab
Show file tree
Hide file tree
Showing 3 changed files with 1,045 additions and 428 deletions.
5 changes: 2 additions & 3 deletions microbench/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@
pandas = None


from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']


class JSONEncoder(json.JSONEncoder):
Expand Down
Loading

0 comments on commit 74d06ab

Please sign in to comment.