You are viewing a single comment's thread:

RE: Hive-Engine Node Benchmark Report - 2025-04-18

I appreciate the feedback just as much as a pull requests.

It just happens to be the version i'm using, there is no 3.13 specific features being used, should work without problems back several versions (i've tested 3.11, and 3.12)

0.00899594 BEE
1 comments

Not for those... but for 3.10 there is. Close enough though =)

Unfortunately, Ubuntu 22 is still behind. Plus a couple of other Linux distros... either way this would need to be changed on the repo.

$ cat src/engine_bench/__init__.py
"""Nectar-bench package for benchmarking hive-engine nodes using nectarengine."""

import sys

__version__ = "0.2.0"

# Check Python version
if sys.version_info < (3, 13):
    print("Error: engine-bench requires Python 3.13 or higher")
    sys.exit(1)

I can install 3.X whatever but just thinking on people that are just using Linux distributed versions.

I am pushing because I see good stuff... not because I dislike stuff. 😎😍

0.00124508 BEE