lower python version restriction to 3.8

This commit is contained in:
dries.k
2022-03-22 10:50:40 +01:00
parent e84fb48ca7
commit e2d3c7f4b1
2 changed files with 3 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ Windows 10 | KDE
## Requirements
- python >=3.9
- python >=3.8
- PyQt6
- requests
- websocket-client

View File

@@ -9,7 +9,7 @@ NAME = 'gotify-tray'
DESCRIPTION = 'A tray notification application for receiving messages from a Gotify server.'
URL = 'https://github.com/seird/gotify-tray'
EMAIL = "k.dries@protonmail.com"
REQUIRES_PYTHON = '>=3.9.0'
REQUIRES_PYTHON = '>=3.8.0'
with open("version.txt", "r") as f:
VERSION = f.read()
@@ -81,6 +81,7 @@ setup(
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]