Compare commits

...

4 Commits

Author SHA1 Message Date
Upstream Data
d39d278296 version: bump version number 2024-12-10 10:51:58 -07:00
Upstream Data
ea8b922367 bug: fix hive default password 2024-12-10 10:51:46 -07:00
Upstream Data
0d1c8d80e0 version: bump version number 2024-12-10 10:46:44 -07:00
Upstream Data
494d25da97 feature: add support for hiveon S19 2024-12-10 10:46:23 -07:00
3 changed files with 4 additions and 3 deletions

View File

@@ -427,6 +427,7 @@ MINER_CLASSES = {
None: HiveonModern,
"ANTMINER T9": HiveonT9,
"ANTMINER S19JPRO": HiveonS19jPro,
"ANTMINER S19": HiveonS19,
},
MinerTypes.LUX_OS: {
None: LUXMiner,
@@ -873,7 +874,7 @@ class MinerFactory:
if miner_type in MINER_CLASSES:
if miner_model is not None:
warnings.warn(
f"Partially supported miner found: {miner_model}, please open an issue with miner data "
f"Partially supported miner found: {miner_model}, type: {miner_type}, please open an issue with miner data "
f"and this model on GitHub (https://github.com/UpstreamData/pyasic/issues)."
)
return MINER_CLASSES[miner_type][None](ip)

View File

@@ -37,7 +37,7 @@ _settings = { # defaults
"default_goldshell_web_password": "123456789",
"default_auradine_web_password": "admin",
"default_epic_web_password": "letmein",
"default_hive_web_password": "admin",
"default_hive_web_password": "root",
"default_iceriver_web_password": "12345678",
"default_antminer_ssh_password": "miner",
"default_bosminer_ssh_password": "root",

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyasic"
version = "0.65.1"
version = "0.65.3"
description = "A simplified and standardized interface for Bitcoin ASICs."
authors = ["UpstreamData <brett@upstreamdata.ca>"]
repository = "https://github.com/UpstreamData/pyasic"