Skip to content

Commit

Permalink
Solve pypi upload error.
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen committed Dec 7, 2023
1 parent 71e78ff commit 5eb1709
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ helps make pymodbus a better product.

:ref:`Authors`: contains a complete list of volunteers have contributed to each major version.

Version 3.6.1
-------------


Version 3.6.0
-------------
* doc: Fix a code mismatch in client.rst
Expand Down
3 changes: 2 additions & 1 deletion MAKE_RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Prepare/make release on dev.
git log --pretty="%an" v3.0.0..HEAD | sort -uf > authors.log
update AUTHORS
cd doc; ./build_html
* twine check dist/*
* Commit, push and merge.
* Checkout master locally
* git pull dev
Expand All @@ -33,8 +34,8 @@ Prepare/make release on dev.
* on local repo
* git pull, check release tag is pulled
* git checkout v3.0.0dev0
* rm -rf build/* dist/*
* python3 -m build
* twine check dist/*
* twine upload dist/* (upload to pypi)
* Double check Read me docs are updated
* trigger build https://readthedocs.org/projects/pymodbus/builds/
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Pymodbus consist of 5 parts:

Common features
^^^^^^^^^^^^^^^
* Full :download:`modbus standard protocol <_static/Modbus_Application_Protocol_V1_1b3.pdf>` implementation
* Full `modbus standard protocol <_static/Modbus_Application_Protocol_V1_1b3.pdf>`_ implementation
* Support for custom function codes
* support serial (rs-485), tcp, tls and udp communication
* support all standard frames: socket, rtu, rtu-over-tcp, tcp and ascii
Expand Down
2 changes: 1 addition & 1 deletion pymodbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
from pymodbus.pdu import ExceptionResponse


__version__ = "3.6.0"
__version__ = "3.6.1"
__version_full__ = f"[pymodbus, version {__version__}]"

0 comments on commit 5eb1709

Please sign in to comment.