The common location package used for catalpa's projects. A hierarchical tree of geographical locations supporting location type and GIS data.
The admin site is set up to use Modeltranslations (if available in the parent app)
For modeltranslations, please remember to run sync_translation_fields in order to get name_en, name_tet etc. fields.
This is intended to be compatible with:
- Django 3.1, 3.2, 4.0
- Python 3.7, 3.8, 3.9
gh repo clone catalpainternational/simple_locations
cd simple_locations
python -m venv env
. env/bin/activate
pip install pip-tools
pip-sync requirements.txt dev.txt
pre-commit installIf pre-commit is installed your code will be checked before commit.
This includes
- black
- flake8
- isort
- mypy
The same checks are run on push. See pytest.yaml for details on the checks being run.
For a new release, change the version property in pyproject.toml and push a git tag with the version number
For instance at time of writing the version is 3.1.4 with the tag v3.1.4
See build.yaml for details on release tagging
-
Version 3.1.4
- Migrating JSON views from openly
-
Version 3.1.3
- Added
intersects_areafunction
- Added
-
Version 3.1.2
- Uses psycopg2-binary for development environment
-
Version 3.1.1
- Added "border" fields
- Added a model for "projected" areas in EPSG:3857
- Added commands for border generation and
./manage.pyand associated project code
-
Version 3.0.1
- Poetry for dependency + packaging
- Releases are automated by pushing a
vx.x.xtag to github
-
Version 3.0 (not on pypi)
- Code style changes (black, flake8)
-
Version 2.77
- first pass of updates for Python 3.8+ and Django 3.1+
-
Version 2.75
- add modeltranslations
-
Version 2.74
- fix CORS issue breaking maps in AreaAdmin
- typo in AreaChildrenInline
-
Version 2.73
- add an inline showing children to the Area admin
- make the
geomfield optional
-
Version 2.72
- optionally use django_extensions' ForeignKeyAutocompleteAdmin in admin interface
Bump pyproject.toml
Then run poetry build and poetry publish
poetry build
poetry publishSee the file build.yml for the workflow