Skip to content

Commit 4fe308d

Browse files
committed
Version update to 6.0.3
1 parent df6c871 commit 4fe308d

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
6.0.3 - 12.11.2023: Deprecated thread API updated (.isAlive() → .is_alive() since Python 3.8) by gizmo1904 (https://github.com/gizmo1904)
12
6.0.2 - 02.07.2023: --write function fixed by Sam Grove (https://github.com/sg-)
23
6.0.1 - 07.03.2020: Issue in setup.py fixed
34
6.0.0 - 07.03.2020: Code refactoring and python packaging

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.
6262
Before you start installing _sterm_ make sure you use the correct version.
6363
Depending on your distribution, the you may need to use `pip3` instead of `pip`.
6464
You can check your Python version by executing the following commands:

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,16 @@
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",

sterm.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
33
sterm \- a minimal serial terminal that focus on being easy to use. A client simply works.
44

sterm/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
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

0 commit comments

Comments
 (0)