Skip to content

Commit

Permalink
Add support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
noahbroyles committed Jan 9, 2023
1 parent 57cfcd8 commit d587828
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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.0.2'
__version__ = '3.0.3'
__author__ = 'Noah Broyles'
__all__ = [
'InvalidSyntax',
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3.7, 3.8, 3.9, 3.10"
],
packages=["secsie"],
include_package_data=True,
#install_requires=["json", "re"] wow this is bad
)
include_package_data=True
)

0 comments on commit d587828

Please sign in to comment.