Skip to content

Commit c180bd5

Browse files
committed
Merged pylink into pyvantagepro
1 parent b35c126 commit c180bd5

File tree

4 files changed

+399
-4
lines changed

4 files changed

+399
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "PyVantagePro_MarcoGos"
7-
version = "0.3.24"
7+
version = "0.3.25"
88
authors = [
99
{ name="Salem Harrache", email="[email protected]" },
1010
{ name="Marco Gosselink", email="[email protected]" },
1111
]
1212
dependencies = [
13-
"PyLink-MarcoGos>=0.3.6",
1413
"progressbar-latest"
1514
]
1615
description = "Communication tools for the Davis VantagePro2 devices"

pyvantagepro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
from .logger import LOGGER, active_logger
1414
from .device import VantagePro2
1515

16-
VERSION = '0.3.24'
16+
VERSION = '0.3.25'
1717
__version__ = VERSION

pyvantagepro/device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from __future__ import division, unicode_literals
1313
import struct
1414
from datetime import datetime, timedelta
15-
from pylink import link_from_url, SerialLink
15+
from .link import link_from_url, SerialLink
1616

1717
from .logger import LOGGER
1818
from .utils import (cached_property, retry, bytes_to_hex,

0 commit comments

Comments
 (0)