Skip to content

Commit

Permalink
Version 1.2.
Browse files Browse the repository at this point in the history
Django 1.4.11 is now the minimum requirement, as that is when six.PY2
was added.
  • Loading branch information
dracos committed Dec 5, 2014
1 parent d8cbda9 commit b2e4bc6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
/web/down.html
/data/cache
/MANIFEST
/build
/dist
/django_mapit.egg-info
*~
/.coverage

Expand Down
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
v1.2, 2014-12-05
* Add Django 1.7 and Python 3 support.
* Improve robustness of JSONP and bad generation parameters.
* Add min_generation parameter to /children and /point endpoints.
* Remove requirement for GDAL or memcached.
* Factor out further country specific data.
* MapIt UK specific:
* New Santa postcode.
* Changelog.
* October 2014 Boundary-Line support.

v1.1, 2014-09-19
* Allow import of shapefiles with empty features.
* Allow editing of main area name in admin
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django>=1.4
Django>=1.4.11
South==1.0
psycopg2
PyYAML
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def install_requires():

setup(
name='django-mapit',
version='1.1',
version='1.2',
description=(
'A web service for mapping postcodes and points to current or past '
'administrative area information and polygons.'),
Expand All @@ -38,6 +38,8 @@ def install_requires():
'License :: OSI Approved :: GNU Affero General Public License v3',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: GIS',
Expand Down

0 comments on commit b2e4bc6

Please sign in to comment.