Skip to content

Commit

Permalink
Remove forgotten support for python 3.5
Browse files Browse the repository at this point in the history
The last python version deprecation change forgot `setup.py`.
Update that to be on the same level as in `flent/__init__.py`.

Fixes: abe8869
Last changed in : 43c82cd

Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com>
  • Loading branch information
vincele committed Jun 22, 2024
1 parent 6c8dce5 commit e1e7d61
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 e1e7d61

Please sign in to comment.