Skip to content

Commit

Permalink
Merge PR 308
Browse files Browse the repository at this point in the history
Fix for missing version compatibility deprecation

Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
  • Loading branch information
tohojo committed Jun 24, 2024
2 parents 349af14 + e1e7d61 commit 7174d01
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@

version_string = VERSION

if sys.version_info[:3] < (3, 5, 0):
sys.stderr.write("Sorry, Flent requires v3.5 or later of Python.\n")
if sys.version_info[:3] < (3, 6, 0):
sys.stderr.write("Sorry, Flent requires v3.6 or later of Python.\n")
sys.exit(1)


Expand Down Expand Up @@ -112,7 +112,6 @@ def make_release_tree(self, base_dir, files):
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
Expand Down

0 comments on commit 7174d01

Please sign in to comment.