Skip to content

Commit

Permalink
Version 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
juyrjola committed May 12, 2017
1 parent 4a66206 commit 3001598
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Second, implement your own custom User model in your application's

.. code:: python
# users/models.py
from helusers.models import AbstractUser
Expand All @@ -32,9 +34,10 @@ to also point Django to use your custom User model.
...
'helusers',
...
'users'
)
AUTH_USER_MODEL = 'myapp.User'
AUTH_USER_MODEL = 'users.User'
OAuth2 provider
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

setup(
name='django-helusers',
version='0.2.3',
version='0.2.4',
packages=['helusers'],
include_package_data=True,
license='BSD License',
description='Django app for the user infrastructure of the City of Helsinki',
long_description=README,
url='https://github.com/City-of-Helsinki/helusers',
url='https://github.com/City-of-Helsinki/django-helusers',
author='Juha Yrjölä',
author_email='juha.yrjola@iki.fi',
install_requires=[
Expand Down

0 comments on commit 3001598

Please sign in to comment.