From 6746ef39be65c1878b6b4c9167a0daef0fc542dc Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 3 Aug 2024 12:32:43 +0200 Subject: [PATCH] Upgrade development packages --- dev-requirements.txt | 8 ++++---- setup.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 58b361a2..c4046899 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,6 +1,6 @@ -rrequirements.txt -pytest==7.2.0 -flake8==5.0.4 -pytest-timeout==2.1.0 -pytest-aiohttp==1.0.4 +pytest==8.3.2 +flake8==7.1.0 +pytest-timeout==2.3.1 +pytest-aiohttp==1.0.5 diff --git a/setup.py b/setup.py index b35ad99e..034335d8 100644 --- a/setup.py +++ b/setup.py @@ -23,9 +23,9 @@ import subprocess from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -# we only support Python 3 version >= 3.7 -if len(sys.argv) >= 2 and sys.argv[1] == "install" and sys.version_info < (3, 7): - raise SystemExit("Python 3.7 or higher is required") +# we only support Python 3 version >= 3.8 +if len(sys.argv) >= 2 and sys.argv[1] == "install" and sys.version_info < (3, 8): + raise SystemExit("Python 3.8 or higher is required") class PyTest(TestCommand): @@ -67,7 +67,7 @@ setup( include_package_data=True, zip_safe=False, platforms="any", - python_requires='>=3.7', + python_requires='>=3.8', setup_requires=["setuptools>=17.1"], classifiers=[ "Development Status :: 5 - Production/Stable",