- Update CHANGES.rst
- Update version number in
my_project/__init__.py - Update version number in
setup.py - Install the package again for local development, but with the new version number:
python setup.py develop
- Run the tests:
python setup.py test
| from django.db import models | |
| class M1(models.Model): | |
| title = models.CharField(max_length=100) | |
| img1 = models.ImageField(upload_to="static/") | |
| def __unicode__(self): | |
| return self.title |
| UX improvement for Submitt Button | |
| ----------------------------------- | |
| Forked from [Mark Hayes](http://codepen.io/mhayes)'s Pen [qdCAc](http://codepen.io/mhayes/pen/qdCAc/). | |
| A [Pen](http://codepen.io/rafibomb/pen/bGszx) by [Rafi Benkual](http://codepen.io/rafibomb) on [CodePen](http://codepen.io/). | |
| [License](http://codepen.io/rafibomb/pen/bGszx/license). |
my_project/__init__.pysetup.pypython setup.py develop
python setup.py test