Skip to content

Commit

Permalink
Facilitate tests and version upgrade (#13)
Browse files Browse the repository at this point in the history
* misc: properly call version attribute

* feat: add template sample to test app (#10)

As an example, because there is no theme configured here and this will
have no impact in the app. **However**, another change to the project
`README` is incoming after this change is merged to include a screenshot
with an example of the template provided working with
`django-surface-theme`.

* Update Django version in pyproject.toml (#12)

Signed-off-by: pacuraro <[email protected]>

* misc: version bump for new release

---------

Signed-off-by: pacuraro <[email protected]>
Co-authored-by: pacuraro <[email protected]>
  • Loading branch information
gsilvapt and pacuraro authored Jul 27, 2023
1 parent eba0087 commit 1e03a09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apitokens/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Topic :: Software Development",
]
dependencies = [
"Django >= 3.1, < 4.0",
"Django >= 3.1, < 5.0",
"django-rest-knox == 4.2.0",
]

Expand Down
8 changes: 1 addition & 7 deletions testapp/testapp/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

Expand All @@ -27,7 +26,6 @@

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
Expand Down Expand Up @@ -56,7 +54,7 @@
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'DIRS': [BASE_DIR / 'testapp' / 'templates'],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
Expand All @@ -71,7 +69,6 @@

WSGI_APPLICATION = 'testapp.wsgi.application'


# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases

Expand All @@ -82,7 +79,6 @@
}
}


# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators

Expand All @@ -101,7 +97,6 @@
},
]


# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/

Expand All @@ -115,7 +110,6 @@

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/

Expand Down
6 changes: 6 additions & 0 deletions testapp/testapp/templates/admin/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "admin/base.html" %}

{% block userlinks %}
{{ block.super }}
/ <a href="{% url 'admin:apitokens_mytoken_changelist' %}">API Tokens</a>
{% endblock %}

0 comments on commit 1e03a09

Please sign in to comment.