Skip to content

Commit

Permalink
Release 0.2.6.dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Jan 3, 2022
1 parent bcb9ba4 commit 0be748d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lock_tokens/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.5"
__version__ = "0.2.6.dev1"
2 changes: 1 addition & 1 deletion lock_tokens/templates/api/load_client.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load staticfiles %}
{% load static %}
{% if csrf %}{% csrf_token %}{% endif %}
<script src="{% static "lock_tokens/js/lock_tokens.js" %}" type="text/javascript"></script>
<script type="text/javascript">
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.4
current_version = 0.2.6.dev1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.staticfiles",
"django.contrib.admin",
"django.contrib.messages",
"lock_tokens.apps.LockTokensConfig",
Expand All @@ -40,6 +39,7 @@
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
]
}
},
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ envlist =
{py27,py35}-django18,
{py27,py35}-django111
{py35}-django21
{py39}-django32

[travis:env]
DJANGO =
1.8: django18
1.11: django111
2.1: django21
3.2: django32

[testenv]
setenv =
Expand All @@ -18,7 +20,5 @@ deps =
django18: Django>=1.8,<1.9
django111: Django>=1.11,<2.0
django21: Django>=2.1,<2.2
django32: Django>=3.2,<4.0
-r{toxinidir}/requirements_test.txt
basepython =
py35: python3.5
py27: python2.7

0 comments on commit 0be748d

Please sign in to comment.