Skip to content

Commit 5c77287

Browse files
Update to new version number
1 parent b52e3a3 commit 5c77287

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
run: make test
2323

2424
- name: Upload coverage to Codecov
25-
run: bash <(curl -s https://codecov.io/bash)
25+
run: bash <(curl -s https://codecov.io/bash)

bootstrapform_jinja/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from distutils.version import StrictVersion
22

33
# start from a fresh number 4 to identify jinja verison
4-
VERSION = StrictVersion('4.2.3')
4+
VERSION = StrictVersion('4.3.0')

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ max-line-length = 120
33
max-complexity = 10
44

55
[bdist_wheel]
6-
python-tag = py36
6+
python-tag = py38
77

88
[coverage:run]
99
source = bootstrapform_jinja

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,19 @@
3636
'Environment :: Web Environment',
3737
'Programming Language :: Python :: 3',
3838
'Programming Language :: Python :: 3 :: Only',
39-
'Programming Language :: Python :: 3.5',
40-
'Programming Language :: Python :: 3.6',
39+
'Programming Language :: Python :: 3.8',
4140
],
4241
keywords='bootstrap,django,jinja2',
4342
author='Samuel Colvin',
4443
author_email='[email protected]',
4544
url='https://github.com/tutorcruncher/django-jinja-bootstrap-form',
4645
license='BSD',
4746
install_requires=[
48-
'django>=1.9',
49-
'django-jinja>=2.3.1',
47+
'django>=3.1',
48+
'django-jinja>=2.6.0',
5049
],
5150
packages=find_packages(),
5251
package_data={'bootstrapform_jinja': template_files},
53-
python_requires='>=3.5',
52+
python_requires='>=3.8',
5453
zip_safe=True,
5554
)

0 commit comments

Comments
 (0)