Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit efb02eb

Browse files
committedDec 7, 2024
Merge branch 'dev'
2 parents a1c14c7 + fb6443f commit efb02eb

File tree

119 files changed

+4163
-5986
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+4163
-5986
lines changed
 

‎.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
fail-fast: false
3737
matrix:
3838
os: [ubuntu-latest, macos-latest, windows-latest]
39-
python: ['3.9', '3.10', '3.11', '3.12', "3.13"]
39+
python: ['3.9', '3.10', '3.11', '3.12', "3.13.0"]
4040
include:
4141
- python: '3.9'
4242
run_lint: true
43-
- python: '3.13'
43+
- python: '3.13.0'
4444
run_doc: true
4545
run_lint: true
4646
- os: macos-latest
@@ -105,7 +105,7 @@ jobs:
105105
- name: mypy
106106
if: matrix.run_lint == true
107107
run: |
108-
mypy pymodbus
108+
mypy pymodbus examples
109109
110110
- name: ruff
111111
if: matrix.run_lint == true

‎API_changes.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@ API changes
22
===========
33
Versions (X.Y.Z) where Z > 0 e.g. 3.0.1 do NOT have API changes!
44

5+
API changes 3.8.0
6+
-----------------
7+
- ModbusSlaveContext, removed zero_mode parameter.
8+
- Removed skip_encode parameter.
9+
- renamed ModbusExceptions enums to legal constants.
10+
- enforced client keyword only parameters (positional not allowed).
11+
- added trace_packet/pdu/connect to client/server.
12+
- removed on_connect_callback from client.
13+
- removed response_manipulator, request_tracer from server.
514

615
API changes 3.7.0
716
-----------------

0 commit comments

Comments
 (0)
Please sign in to comment.