Skip to content

Commit

Permalink
Update to new version number
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhamiltonstubber committed Oct 12, 2020
1 parent b52e3a3 commit 5c77287
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion bootstrapform_jinja/meta.py
Original file line number Diff line number Diff line change
@@ -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')
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ max-line-length = 120
max-complexity = 10

[bdist_wheel]
python-tag = py36
python-tag = py38

[coverage:run]
source = bootstrapform_jinja
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,19 @@
'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',
author_email='s@muelcolvin.com',
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,
)

0 comments on commit 5c77287

Please sign in to comment.