Skip to content

Commit

Permalink
Merge branch 'release/0.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
banagale committed Jun 17, 2020
2 parents c5df849 + b4a3487 commit e251edb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ Then, add `address` to your `INSTALLED_APPS` list in `settings.py`:

```
INSTALLED_APPS = [
...
'django_filters',
# ...
'address',
# ...
]
```

Expand Down Expand Up @@ -187,7 +188,6 @@ In 2015 Luke began working to abstract the project so it could handle a wider va
This became the current `dev` branch. While good progress was made on this, the branch became stale and releases
continued under the current model architecture on master.

The project is currently in triage, for releases 0.2.2 and 0.2.3, with a both a model re-architecture and updated
requirements for 0.3.0. Read more about the project path forward [in this issue](#98).
The project is currently in triage, read more about the project path forward [in this issue](#98).

If you have questions, bug reports or suggestions please create a New Issue for the project.
6 changes: 0 additions & 6 deletions address/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
import sys

from django import forms
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.utils.safestring import mark_safe

from .models import Address, to_python
from .widgets import AddressWidget
Expand All @@ -18,9 +15,6 @@

__all__ = ['AddressWidget', 'AddressField']

if not settings.GOOGLE_API_KEY:
raise ImproperlyConfigured("GOOGLE_API_KEY is not configured in settings.py")


class AddressField(forms.ModelChoiceField):
widget = AddressWidget
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import find_packages, setup

version = '0.2.2'
version = '0.2.3'

if sys.argv[-1] == 'tag':
print("Tagging the version on github:")
Expand All @@ -16,8 +16,8 @@
version=version,
author='Luke Hodkinson',
author_email='[email protected]',
maintainer='Luke Hodkinson',
maintainer_email='furious.luke@gmail.com',
maintainer='Rob Banagale',
maintainer_email='rob@banagale.com',
url='https://github.com/furious-luke/django-address',
description='A django application for describing addresses.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
Expand Down

0 comments on commit e251edb

Please sign in to comment.