Skip to content

Commit 1ee548f

Browse files
committed
Drop support of Python 3.7 (end-of-life)
1 parent 8687247 commit 1ee548f

12 files changed

+11
-14
lines changed

.github/workflows/simple-program-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/simple-program-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/simple-program-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919

2020
steps:
2121
- uses: actions/checkout@v3

.github/workflows/system-monitor-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919
theme: [ "3.5inchTheme2" ]
2020

2121
steps:

.github/workflows/system-monitor-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919
theme: [ "3.5inchTheme2" ]
2020

2121
steps:

.github/workflows/system-monitor-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.11"]
18+
python-version: ["3.8", "3.11"]
1919
theme: [ "3.5inchTheme2" ]
2020

2121
steps:

.github/workflows/themes-screenshot-on-push.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
# added or changed files to the repository.
2020
contents: write
2121

22-
strategy:
23-
fail-fast: false
24-
2522
steps:
2623
- uses: actions/checkout@v3
2724
- name: Set up Python 3.10

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This project is an open-source alternative software, NOT the USBMonitor.exe / Ex
1414

1515
A Python system monitor program and a library for **3.5" & 5" IPS USB-C (UART) displays.**
1616

17-
Supported operating systems : macOS, Windows, Linux (incl. Raspberry Pi), basically all OS that support Python 3.7+
17+
Supported operating systems : macOS, Windows, Linux (incl. Raspberry Pi), basically all OS that support Python 3.8+
1818

1919
### Supported smart screens models:
2020

configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import subprocess
2525
import sys
2626

27-
MIN_PYTHON = (3, 7)
27+
MIN_PYTHON = (3, 8)
2828
if sys.version_info < MIN_PYTHON:
2929
print("[ERROR] Python %s.%s or later is required." % MIN_PYTHON)
3030
try:

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import os
2727
import sys
2828

29-
MIN_PYTHON = (3, 7)
29+
MIN_PYTHON = (3, 8)
3030
if sys.version_info < MIN_PYTHON:
3131
print("[ERROR] Python %s.%s or later is required." % MIN_PYTHON)
3232
try:

0 commit comments

Comments
 (0)