Skip to content

Commit 3c5f99f

Browse files
Merge pull request #15 from tutorcruncher/py3.10
2 parents c3cfcb0 + 049c0fb commit 3c5f99f

File tree

5 files changed

+4
-15
lines changed

5 files changed

+4
-15
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ jobs:
4646
- name: set up python
4747
uses: actions/setup-python@v1
4848
with:
49-
python-version: '3.8'
49+
python-version: '3.10'
5050

5151
- name: install
5252
run: |
5353
make install
5454
pip install -U wheel twine
55+
5556
- name: build
5657
run: python setup.py sdist bdist_wheel
5758

bootstrapform_jinja/__init__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +0,0 @@
1-
from .meta import VERSION
2-
import django
3-
4-
__version__ = str(VERSION)
5-
if django.VERSION >= (3, 2):
6-
# The declaration is only needed for older Django versions
7-
pass
8-
else:
9-
default_app_config = 'bootstrapform_jinja.apps.BootstrapformJinjaConfig'

bootstrapform_jinja/meta.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

bootstrapform_jinja/version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = '4.5.0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from setuptools import setup, find_packages
2-
from bootstrapform_jinja.meta import VERSION
2+
from bootstrapform_jinja.version import VERSION
33

44
description = """
55
django-jinja-bootstrap-form

0 commit comments

Comments
 (0)