Skip to content

Commit

Permalink
Fix PyPi classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
noahbroyles committed Jan 9, 2023
1 parent 46b8c0d commit 64aa515
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion secsie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .generator import generate_config, generate_config_file


__version__ = '3.1.0'
__version__ = '3.1.1'
__author__ = 'Noah Broyles'
__all__ = [
'InvalidSyntax',
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7, 3.8, 3.9, 3.10"
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
],
packages=["secsie"],
include_package_data=True
Expand Down

0 comments on commit 64aa515

Please sign in to comment.