* Fixes #113

* Update tox.ini

Co-authored-by: Jannis Leidel <jannis@leidel.info>

Co-authored-by: Jannis Leidel <jannis@leidel.info>
This commit is contained in:
Giovanni B 2021-10-21 16:35:56 +01:00 committed by GitHub
parent ac86ca5ec9
commit 2b747bc4af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

3
.gitignore vendored
View file

@ -1,3 +1,6 @@
.*
!.gitignore
!.coveragerc
*.pyc
.*.swp
MANIFEST

View file

@ -72,7 +72,7 @@ class Command(BaseCommand):
for f in [f for f in filenames
if f.endswith(extension) and not f.startswith(".")]:
path = os.path.join(dirpath, f)
name = path.split(templatedir)[1]
name = path.split(str(templatedir))[1]
if name.startswith('/'):
name = name[1:]
try:

View file

@ -7,6 +7,7 @@ envlist =
py{35,36}-dj111
py{35,36,37}-dj21
py{35,36,37,38,39}-dj22
py{36,37,38,39}-dj{30,31}
[gh-actions]
python =
@ -32,6 +33,8 @@ deps =
dj20: Django<2.1
dj21: Django<2.2
dj22: Django<2.3
dj30: Django<3.1
dj31: Django<3.2
djmain: https://github.com/django/django/archive/main.tar.gz#egg=django
commands =