Skip to content

Commit 6746ef3

Browse files
committed
Upgrade development packages
1 parent 8889eaa commit 6746ef3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

dev-requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-rrequirements.txt
22

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

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
from setuptools import setup, find_packages
2424
from setuptools.command.test import test as TestCommand
2525

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")
2929

3030

3131
class PyTest(TestCommand):
@@ -67,7 +67,7 @@ def run_tests(self):
6767
include_package_data=True,
6868
zip_safe=False,
6969
platforms="any",
70-
python_requires='>=3.7',
70+
python_requires='>=3.8',
7171
setup_requires=["setuptools>=17.1"],
7272
classifiers=[
7373
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)