fix a bug with avalonminer imports and bump version number

This commit is contained in:
UpstreamData
2022-07-20 14:42:33 -06:00
parent a5dc7f485b
commit 8258320a7b
4 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from A8X import CGMinerA8X # noqa - Ignore access to _module
from .A8X import CGMinerA8X # noqa - Ignore access to _module
from pyasic.miners._types import Avalon821 # noqa - Ignore access to _module

View File

@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from A8X import CGMinerA8X # noqa - Ignore access to _module
from .A8X import CGMinerA8X # noqa - Ignore access to _module
from pyasic.miners._types import Avalon841 # noqa - Ignore access to _module

View File

@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from A8X import CGMinerA8X # noqa - Ignore access to _module
from .A8X import CGMinerA8X # noqa - Ignore access to _module
from pyasic.miners._types import Avalon851 # noqa - Ignore access to _module

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyasic"
version = "0.13.0"
version = "0.13.1"
description = "A set of modules for interfacing with many common types of ASIC bitcoin miners, using both their API and SSH."
authors = ["UpstreamData <brett@upstreamdata.ca>"]
repository = "https://github.com/UpstreamData/pyasic"