summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-02-27 18:13:01 +0800
committerKhem Raj <raj.khem@gmail.com>2026-03-02 19:25:54 -0800
commite6e12396bde4152f29a1cba7d75ab622af0113b2 (patch)
tree11dad26067848a0245ae11f4da22115e726c59aa /meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb
parent01168ffb6ff978a2b31c37f38ca188d10d639b0f (diff)
downloadmeta-openembedded-e6e12396bde4152f29a1cba7d75ab622af0113b2.tar.gz
python3-pymodbus: upgrade 3.11.4 -> 3.12.1
Changelog: ============ - SimDevice / SimRuntime fixes. - No inter_frame_time check for baudrate > 38000. - Fix smaller bugs in test, part 2. - simulator startup armoring and update 3.x docs - Fix smaller bugs in test, part 1. - Update README.rst. - Coverage limit is 99.95% (to allow a little margin). - Removed simulator README, due to unused. - fix: add warning log when using internal default simulator config - Document simulator entrypoint in README - Upgrade library versions installed by pip. - SimData/Device integrate in server. - Add bind to ModbusUdpClient. - Solve Zuban problem. - Fix wrong parameter name in function docstring. Fix set_values does not accept tuple. - Add context.async_get/setValues with device_id. - SimData/SimDevice ready for server integration. - Reactivate pytest coverage. - No blank issue template. - Update issue templates - Fix ReadFifoQueueResponse count - Limited support for multiple devices on RS485. - Simulator DataBlock docstring corrections - fix README.rst and troubleshooting - Solve DoS vulnerability. - server handle_local_echo only in comm_params. - di is for discrete input - Allow any dev_id, when requesting dev_id 0. - Allow response transaction_id 0. - Use relative import. - ModbusServerContext.device_ids() docstring - Include ModbusSequentialDataBlock into the documentation - Fix Modbus TCP protocol ID validation in FramerSocket - Remove idle_time() from sync client, which anyhow was void. - Correct check_ci.sh. - Replace mypy with zuban - Fix monitoring of functions - Improve types - dicts have preserved insertion order since 3.7 - asyncio.iscoroutinefunction() is deprecated - Remove pypi-alias. 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.12.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb b/meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb
new file mode 100644
index 0000000000..7ba7ee78cd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymodbus_3.12.1.bb
@@ -0,0 +1,31 @@
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=12a490c6cffa2e76a6df8aa1fa29e183"
5
6SRC_URI[sha256sum] = "bcb483381747b3e3aec2c8e01d5df885e5ea43f85b7145dc1907af06aca93a2c"
7
8inherit pypi python_setuptools_build_meta
9
10PACKAGECONFIG ??= ""
11PACKAGECONFIG[repl] = ",,,python3-aiohttp python3-click python3-prompt-toolkit python3-pygments python3-pyserial-asyncio"
12PACKAGECONFIG[asyncio] = ",,,python3-pyserial-asyncio"
13PACKAGECONFIG[tornado] = ",,,python3-tornado"
14PACKAGECONFIG[twisted] = ",,,python3-twisted-conch"
15PACKAGECONFIG[redis] = ",,,python3-redis"
16PACKAGECONFIG[sql] = ",,,python3-sqlalchemy"
17
18RDEPENDS:${PN} += " \
19 python3-asyncio \
20 python3-core \
21 python3-io \
22 python3-json \
23 python3-logging \
24 python3-math \
25 python3-netserver \
26"
27
28RDEPENDS:${PN} += " \
29 python3-pyserial \
30 python3-six \
31"