Skip to content

Commit

Permalink
Update the supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kazunarikudo committed Aug 11, 2021
1 parent 2ebde4e commit 98883de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


# Check the Python version:
supported_versions = [(3, 4), (3, 5), (3, 6)]
supported_versions = [(3, 5), (3, 6), (3, 7), (3, 8)]
if sys.version_info in supported_versions:
raise RuntimeError(
'See https://github.com/genicam/harvesters_gui#requirements'
Expand Down Expand Up @@ -70,10 +70,10 @@
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
),
# A short, on-sentence summary of the package:
description=description,
Expand Down

0 comments on commit 98883de

Please sign in to comment.