summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-06-05 15:53:06 +0800
committerKhem Raj <raj.khem@gmail.com>2023-06-05 09:29:35 -0700
commitb5d5a8565adf64dde67fcf1c608f6c8c688d6dd4 (patch)
tree1a1d859d27512f01c34b61d57531ed6766592673 /meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
parent6076b0a9b2bca0114b518b0e70aa82ee2faa0f0d (diff)
downloadmeta-openembedded-b5d5a8565adf64dde67fcf1c608f6c8c688d6dd4.tar.gz
python3-pymodbus: upgrade 3.2.2 -> 3.3.0
Changelog: =========== Stabilize windows tests. (#1567) Bump mypy 1.3.0 (#1568) Transport integrated in async clients. (#1541) Client async corrections (due to 3.1.2) (#1565) Server_async[udp], solve 3.1.1 problem. (#1564) Remove ModbusTcpDiagClient. (#1560) Remove old method from Python2/3 transition (#1559) Switch to ruff's version of bandit (#1557) Allow reading/writing address 0 in the simulator (#1552) Remove references to "defer_start". (#1548) Client more robust against faulty response. (#1547) Fix missing package_data directives for simulator web (#1544) Fix installation instructions (#1543) Solve pytest timeout problem. (#1540) DiagnosticStatus encode missing tuple check. (#1533) test SparseDataStore. (#1532) BinaryPayloadBuilder.to_string to BinaryPayloadBuilder.encode (#1526) Adding flake8-pytest-style` to ruff (#1520) Simplify version management. (#1522) pylint and pre-commit autoupdate (#1519) Add type hint (#1512) Add action to lock issues/PR. (#1508) New common transport layer. (#1492) Solve serial close raise problem. Remove old config values (#1503) Document pymodbus.simulator. (#1502) Refactor REPL server to reduce complexity (#1499) Don't catch KeyboardInterrupt twice for REPL server (#1498) Refactor REPL client to reduce complexity (#1489) pymodbus.server: listen on ID 1 by default (#1496) Clean framer/__init__.py (#1494) Duplicate transactions in UDP. (#1486) clean ProcessIncommingPacket. (#1491) Enable pyupgrade (U) rules in ruff (#1484) clean_workflow.yaml solve parameter problem. Correct wrong import in test. (#1483) Implement pyflakes-simplify (#1480) Test case for UDP duplicate msg issue (#1470) Test of write_coil. (#1479) Test reuse of client object. (#1475) Comment about addressing when shared=false (#1474) Remove old aliases to OSError (#1473) pymodbus.simulator fixes (#1463) Fix wrong error message with pymodbus console (#1456) update modbusrtuframer (#1435) Server multidrop test.: (#1451) mypy problem ModbusResponse. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
new file mode 100644
index 0000000000..9b84c4f881
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.3.0.bb
@@ -0,0 +1,35 @@
1SUMMARY = "A fully featured modbus protocol stack in python"
2HOMEPAGE = "https://github.com/riptideio/pymodbus/"
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=430604f78bee72425da231d42eac9cee"
5DEPENDS += "python3-six-native"
6
7SRC_URI[sha256sum] = "0816a644d0ecc74b488ba9f46f8d6662c4a7272a493f184d2c81c6717fb62355"
8S = "${WORKDIR}/pymodbus-${PV}"
9
10inherit pypi setuptools3
11
12PACKAGECONFIG ??= ""
13PACKAGECONFIG[repl] = ",,,python3-aiohttp python3-click python3-prompt-toolkit python3-pygments python3-pyserial-asyncio"
14PACKAGECONFIG[asyncio] = ",,,python3-pyserial-asyncio"
15PACKAGECONFIG[tornado] = ",,,python3-tornado"
16PACKAGECONFIG[twisted] = ",,,python3-twisted-conch"
17PACKAGECONFIG[redis] = ",,,python3-redis"
18PACKAGECONFIG[sql] = ",,,python3-sqlalchemy"
19
20RDEPENDS:${PN} += " \
21 python3-asyncio \
22 python3-core \
23 python3-io \
24 python3-json \
25 python3-logging \
26 python3-math \
27 python3-netserver \
28"
29
30RDEPENDS:${PN} += " \
31 python3-pyserial \
32 python3-six \
33"
34
35