Skip to content

Commit

Permalink
Merge pull request #15 from tutorcruncher/py3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhamiltonstubber authored Oct 25, 2022
2 parents c3cfcb0 + 049c0fb commit 3c5f99f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ jobs:
- name: set up python
uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.10'

- name: install
run: |
make install
pip install -U wheel twine
- name: build
run: python setup.py sdist bdist_wheel

Expand Down
9 changes: 0 additions & 9 deletions bootstrapform_jinja/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +0,0 @@
from .meta import VERSION
import django

__version__ = str(VERSION)
if django.VERSION >= (3, 2):
# The declaration is only needed for older Django versions
pass
else:
default_app_config = 'bootstrapform_jinja.apps.BootstrapformJinjaConfig'
4 changes: 0 additions & 4 deletions bootstrapform_jinja/meta.py

This file was deleted.

1 change: 1 addition & 0 deletions bootstrapform_jinja/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = '4.5.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from setuptools import setup, find_packages
from bootstrapform_jinja.meta import VERSION
from bootstrapform_jinja.version import VERSION

description = """
django-jinja-bootstrap-form
Expand Down

0 comments on commit 3c5f99f

Please sign in to comment.