Skip to content

Commit

Permalink
setup.py: do not claim the support for 3.3 and 3.4
Browse files Browse the repository at this point in the history
instead of testing on 3.3 or 3.4, we test on 3.8, 3.9, 3.11 and 3.12.
so update setup.py to reflect this fact.

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov authored and fruch committed Sep 5, 2024
1 parent 7721ac7 commit e00a183
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.11'
'Programming Language :: Python :: 3.12'
],
include_package_data=True,
)

0 comments on commit e00a183

Please sign in to comment.