Skip to content

Commit

Permalink
added django 4 to the test list and fixed fore_text incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kakulukia committed Jan 8, 2022
1 parent fd23f13 commit 32d5b71
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 22 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,23 @@ python:
- "3.6"
- "3.7"
- "3.8"
# - "3.9"
- "3.9"

env:
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=3.0
- DJANGO=4.0

install:
- pip install jinja2 mako tornado six coverage nose codecov flake8
- pip install django==$DJANGO

matrix:
fast_finish: true
exclude:
- { python: "3.4", env: DJANGO=3.0 }
- { python: "3.5", env: DJANGO=3.0 }
fast_finish: true
exclude:
- { python: "3.4", env: DJANGO=3.0 }
- { python: "3.5", env: DJANGO=3.0 }

# allow_failures:
# - env: DJANGO=master
Expand Down
16 changes: 0 additions & 16 deletions Pipfile

This file was deleted.

2 changes: 1 addition & 1 deletion pypugjs/ext/django/compiler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.conf import settings
from django.utils.encoding import force_text as to_text
from django.utils.encoding import force_str as to_text
from django.utils.translation import template

from pypugjs import Compiler as _Compiler, register_filter
Expand Down

0 comments on commit 32d5b71

Please sign in to comment.