Skip to content

Commit 9584538

Browse files
authored
Clean configurations. (#1111)
1 parent 75a91a4 commit 9584538

File tree

8 files changed

+62
-79
lines changed

8 files changed

+62
-79
lines changed

.coveragerc

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitignore

Lines changed: 14 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,26 @@
1+
*.db
12
*.pyc
23
*.swp
3-
build/
4-
dist/
5-
venv/
6-
pymodbus.egg-info/
4+
__pycache__/
5+
.cache/
76
.coverage
8-
.vscode
7+
.DS_Store
8+
.eggs/
99
.idea
10-
.noseids
11-
*.db
1210
.idea/
11+
.noseids
12+
.pymodhis
13+
.pytest_cache/
1314
.tox/
14-
doc/api/epydoc/html/
15-
.vscode/
1615
.venv
17-
__pycache__/
18-
pymodbus/__pycache__/
19-
pymodbus/client/__pycache__/
20-
pymodbus/datastore/__pycache__/
21-
pymodbus/internal/__pycache__/
22-
pymodbus/server/__pycache__/
23-
test/__pycache__/
24-
**/pymodbus.db
25-
/.eggs/
26-
/test/bin/
27-
/test/include/
28-
/test/lib/
29-
/test/pip-selfcheck.json
30-
/test/.Python
31-
/.cache/
16+
.vscode
17+
.vscode/
18+
build/
19+
/doc/api/epydoc/html/
3220
/doc/sphinx/doctrees/
33-
/doc_new/
34-
/doc/quality/
35-
/doc/pymodbus.pdf
3621
/doc/sphinx/
3722
/doc/html/
3823
/doc/_build/
39-
.pytest_cache/
40-
**/.pymodhis
41-
/build/
4224
/dist/
43-
**/.DS_Store
44-
/venv
25+
/pymodbus.egg-info/
26+
/venv/

.isort.cfg

Lines changed: 0 additions & 21 deletions
This file was deleted.

.project

Lines changed: 0 additions & 17 deletions
This file was deleted.

.pydevproject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
44
<path>/pymodbus</path>
55
</pydev_pathproperty>
6-
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
6+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 3.8</pydev_property>
77
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Pymodbus Environment</pydev_property>
88
</pydev_project>

API_changes.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
=======================
2+
PyModbus - API changes.
3+
=======================
4+
5+
With version 3.0.0 as base, this file will contain a list of all API changes in
6+
each version, including new preferred ways of using the API.
7+
8+
9+
-------------
10+
Version 3.0.1
11+
-------------
12+
13+
Currently no changes.

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Remark: "Supports" means that we only test with those versions, lower versions (
2626
.. important::
2727
**Note 3.0.0 is a major release with a number of incompatible changes.**
2828

29+
All API changes after 3.0.0 are documented in `API_changes.rst <https://github.com/riptideio/pymodbus/blob/dev/API_changes.rst>`_
30+
31+
2932
------------------------------------------------------------
3033
Summary
3134
------------------------------------------------------------

setup.cfg

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,3 +529,34 @@ universal=1
529529
testpaths = test
530530
addopts = -p no:warnings
531531
asyncio_mode = auto
532+
533+
534+
[coverage:run]
535+
include =
536+
pymodbus/
537+
test/
538+
omit =
539+
test/TO_DO_REWRITE
540+
examples/common/tornado_twister
541+
examples/contrib/tornado_twister
542+
543+
[isort]
544+
py_version=38
545+
profile=black
546+
line_length = 80
547+
lines_after_imports = 2
548+
known_local_folder =
549+
common
550+
contrib
551+
sections =
552+
FUTURE
553+
STDLIB
554+
THIRDPARTY
555+
FIRSTPARTY
556+
LOCALFOLDER
557+
include_trailing_comma = true
558+
use_parentheses = true
559+
combine_as_imports = true
560+
force_sort_within_sections = true
561+
forced_separate = doc,examples,pymodbus,test
562+
known_first_party = doc,examples,pymodbus,test

0 commit comments

Comments
 (0)