commit c9d8ec8da0306f5c9b98fdb1dd2a3a7ab4cd3e0a
parent b2b9eccf1d73a9264414e7aaa282e53c2a1560ea
Author: Daniel Moch <daniel@danielmoch.com>
Date: Sat, 1 Sep 2018 07:31:31 -0400
Bump version, refine supported Python versions
Support for all versions of Python3
Diffstat:
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -10,8 +10,7 @@ A Git hook to automate your Pipenv and Django workflows
## Requirements
-- Any version of Python
-- Python 3 is required for development due to the Flit requirement
+- Python 3
## Features
diff --git a/hookmeup/__init__.py b/hookmeup/__init__.py
@@ -8,7 +8,7 @@
from .hookmeup import HookMeUpError
__author__ = 'Daniel Moch'
-__version__ = '0.1.2'
+__version__ = '0.2.0'
def main():
"""Main hookmeup entrypoint"""
diff --git a/pyproject.toml b/pyproject.toml
@@ -13,7 +13,9 @@ classifiers = ["License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
+ "Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control :: Git"]
+requires-python=">=3"
[tool.flit.metadata.requires-extra]
dev = ['pipenv']