File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ type-check:
2121 --follow-imports silent \
2222 --check-untyped-defs \
2323 --allow-untyped-defs \
24- --python-version 3.6 \
24+ --python-version 3.8 \
2525 --html-report mypy-report \
2626 --txt-report mypy-report
2727
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ def get_version(rel_path: str) -> str:
3030PROJECT_DIR_NAME = 'harmony_model_checker'
3131
3232python_version = sys .version_info [:2 ]
33- if python_version < (3 , 6 ):
34- print ("{} requires Python version 3.6 or later" .format (PACKAGE_NAME ))
33+ if python_version < (3 , 8 ):
34+ print ("{} requires Python version 3.8 or later" .format (PACKAGE_NAME ))
3535 print ("(Version {}.{} detected)" .format (* python_version ))
3636 sys .exit (1 )
3737
@@ -161,7 +161,7 @@ def get_c_extension_include_dirs():
161161 'harmony=harmony_model_checker.main:main'
162162 ]
163163 },
164- python_requires = ">=3.6 " ,
164+ python_requires = ">=3.8 " ,
165165 ext_modules = [module ],
166166 cmdclass = {
167167 "build_ext" : BuildExtCommand
You can’t perform that action at this time.
0 commit comments