diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2035af8..d46b075 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,4 +22,4 @@ jobs: run: make test - name: Upload coverage to Codecov - run: bash <(curl -s https://codecov.io/bash) + run: bash <(curl -s https://codecov.io/bash) diff --git a/bootstrapform_jinja/meta.py b/bootstrapform_jinja/meta.py index a2b177e..7f55c6f 100644 --- a/bootstrapform_jinja/meta.py +++ b/bootstrapform_jinja/meta.py @@ -1,4 +1,4 @@ from distutils.version import StrictVersion # start from a fresh number 4 to identify jinja verison -VERSION = StrictVersion('4.2.3') +VERSION = StrictVersion('4.3.0') diff --git a/setup.cfg b/setup.cfg index 22f0db6..5d09852 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ max-line-length = 120 max-complexity = 10 [bdist_wheel] -python-tag = py36 +python-tag = py38 [coverage:run] source = bootstrapform_jinja diff --git a/setup.py b/setup.py index 85afdab..a092def 100644 --- a/setup.py +++ b/setup.py @@ -36,8 +36,7 @@ 'Environment :: Web Environment', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.8', ], keywords='bootstrap,django,jinja2', author='Samuel Colvin', @@ -45,11 +44,11 @@ url='https://github.com/tutorcruncher/django-jinja-bootstrap-form', license='BSD', install_requires=[ - 'django>=1.9', - 'django-jinja>=2.3.1', + 'django>=3.1', + 'django-jinja>=2.6.0', ], packages=find_packages(), package_data={'bootstrapform_jinja': template_files}, - python_requires='>=3.5', + python_requires='>=3.8', zip_safe=True, )