File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
-rrequirements.txt
2
2
3
- pytest==7.2.0
4
- flake8==5.0.4
5
- pytest-timeout==2.1.0
6
- pytest-aiohttp==1.0.4
3
+ pytest==8.3.2
4
+ flake8==7.1.0
5
+ pytest-timeout==2.3.1
6
+ pytest-aiohttp==1.0.5
Original file line number Diff line number Diff line change 23
23
from setuptools import setup , find_packages
24
24
from setuptools .command .test import test as TestCommand
25
25
26
- # we only support Python 3 version >= 3.7
27
- if len (sys .argv ) >= 2 and sys .argv [1 ] == "install" and sys .version_info < (3 , 7 ):
28
- raise SystemExit ("Python 3.7 or higher is required" )
26
+ # we only support Python 3 version >= 3.8
27
+ if len (sys .argv ) >= 2 and sys .argv [1 ] == "install" and sys .version_info < (3 , 8 ):
28
+ raise SystemExit ("Python 3.8 or higher is required" )
29
29
30
30
31
31
class PyTest (TestCommand ):
@@ -67,7 +67,7 @@ def run_tests(self):
67
67
include_package_data = True ,
68
68
zip_safe = False ,
69
69
platforms = "any" ,
70
- python_requires = '>=3.7 ' ,
70
+ python_requires = '>=3.8 ' ,
71
71
setup_requires = ["setuptools>=17.1" ],
72
72
classifiers = [
73
73
"Development Status :: 5 - Production/Stable" ,
You can’t perform that action at this time.
0 commit comments