Skip to content

Commit 8b26bd6

Browse files
committed
Bumping up to Python 3.8
1 parent f729285 commit 8b26bd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def get_version(rel_path: str) -> str:
3030
PROJECT_DIR_NAME = 'harmony_model_checker'
3131

3232
python_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

0 commit comments

Comments
 (0)