Skip to content

Commit

Permalink
Merge pull request #14 from timkpaine/tkp/0110
Browse files Browse the repository at this point in the history
Bump to 0.1.10 for python3 support, add classifiers
  • Loading branch information
timkpaine authored May 8, 2024
2 parents e27604d + 2d95f0b commit 70a77f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion klink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ def get_html_theme_path():
return cur_dir


VERSION = (0, 1, 9)
VERSION = (0, 1, 10)
__version__ = ".".join(str(v) for v in VERSION)
__version_full__ = __version__
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,10 @@ def local_file(filename):
"static/fonts/*.*",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
],
python_requires=">=3.7",
)

0 comments on commit 70a77f0

Please sign in to comment.