Skip to content

Commit

Permalink
dropped python2
Browse files Browse the repository at this point in the history
  • Loading branch information
manodeep authored Aug 1, 2024
1 parent e1c3843 commit 4be3c8c
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,13 +522,11 @@ def setup_packages():
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10']
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12']
metadata = dict(
name=projectname,
version=version,
Expand Down Expand Up @@ -560,7 +558,7 @@ def setup_packages():
min_np_minor),
'future',
'wurlitzer'],
python_requires='>=2.7,!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, <4',
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*, <4',
zip_safe=False,
cmdclass={'build_ext': BuildExtSubclass})

Expand Down

0 comments on commit 4be3c8c

Please sign in to comment.