File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed
Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1+ 6.0.3 - 12.11.2023: Deprecated thread API updated (.isAlive() → .is_alive() since Python 3.8) by gizmo1904 (https://github.com/gizmo1904)
126.0.2 - 02.07.2023: --write function fixed by Sam Grove (https://github.com/sg-)
236.0.1 - 07.03.2020: Issue in setup.py fixed
346.0.0 - 07.03.2020: Code refactoring and python packaging
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ There are two ways to install _sterm_.
5858
5959### Precondition
6060
61- _ sterm_ requires Python 3 to run.
61+ _ sterm_ requires Python 3.8+ to run.
6262Before you start installing _ sterm_ make sure you use the correct version.
6363Depending on your distribution, the you may need to use ` pip3 ` instead of ` pip ` .
6464You can check your Python version by executing the following commands:
Original file line number Diff line number Diff line change 2828 ],
2929 },
3030 install_requires = ["pyserial" ],
31- python_requires = ">=3.4 " ,
31+ python_requires = ">=3.8 " ,
3232 keywords = "serial-communication serial-terminal terminal uart rs232 monitoring tty pyserial serial" ,
3333 license = "GPL" ,
3434 classifiers = [
3535 "Programming Language :: Python :: 3" ,
36- "Programming Language :: Python :: 3.4" ,
37- "Programming Language :: Python :: 3.5" ,
38- "Programming Language :: Python :: 3.6" ,
39- "Programming Language :: Python :: 3.7" ,
4036 "Programming Language :: Python :: 3.8" ,
4137 "Programming Language :: Python :: 3.9" ,
4238 "Programming Language :: Python :: 3.10" ,
39+ "Programming Language :: Python :: 3.11" ,
40+ "Programming Language :: Python :: 3.12" ,
4341 "Development Status :: 5 - Production/Stable" ,
4442 "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
4543 "Operating System :: POSIX :: Linux" ,
Original file line number Diff line number Diff line change 1- .TH STERM 1 "02 June 2023" "6.0.2 " "sterm Manual"
1+ .TH STERM 1 "12 November 2023" "6.0.3 " "sterm Manual"
22.SH NAME
33sterm \- a minimal serial terminal that focus on being easy to use. A client simply works.
44
Original file line number Diff line number Diff line change 2828
2929
3030
31- VERSION = "6.0.2 "
31+ VERSION = "6.0.3 "
3232
3333
3434# This global variable is used to shutdown the thread used
You can’t perform that action at this time.
0 commit comments