Standard base to build Wagtail sites from
Project description
This is a base to build all Takeflight sites off. This package contains all the common code shared between sites, with the ideal Takeflight site containing only model definitions, templates, and front end assets.
Making a release
Upgrade the version in coop/_version.py. Coops version stays in step with Wagtail. i.e. Coop 2.4.x uses Wagtail 2.4.x. Point releases are used to add features during a Wagtail version lifespan.
Update the CHANGELOG. Please.
Tag your release:
$ git tag "x.y.z"
$ git push --tags
Make a virtual environment and activate it. You may already have one from last time:
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install wheel # Only required once per venv
Then, package up and publish the package:
$ ./setup.py sdist bdist_wheel upload
And you are done!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.