2018-12-26 15:00:47 +00:00
|
|
|
.. _tutor:
|
|
|
|
|
|
|
|
Tutor development
|
|
|
|
=================
|
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
Start by cloning the Tutor repository::
|
2018-12-26 15:00:47 +00:00
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
git clone https://github.com/regisb/tutor.git
|
|
|
|
cd tutor/
|
2018-12-26 15:00:47 +00:00
|
|
|
|
2019-01-22 20:25:04 +00:00
|
|
|
Install requirements
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pip install -r requirements/dev.txt
|
|
|
|
|
|
|
|
Bundle ``tutor`` executable
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
make bundle
|
|
|
|
|
|
|
|
Generate the documentation
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
pip install sphinx sphinx_rtd_theme
|
|
|
|
cd docs/
|
|
|
|
make html
|
|
|
|
|
|
|
|
You can then browse the documentation with::
|
|
|
|
|
|
|
|
make browse
|
2019-02-13 22:44:42 +00:00
|
|
|
|
|
|
|
Releasing a new version
|
|
|
|
-----------------------
|
|
|
|
|
2019-02-18 08:22:41 +00:00
|
|
|
- Bump the ``__version__`` value in ``tutor/__about__.py``.
|
2019-02-13 22:44:42 +00:00
|
|
|
- Replace "Latest" by the version name in CHANGELOG.md.
|
|
|
|
- Create a commit with the version changelog.
|
2019-02-18 08:22:41 +00:00
|
|
|
- ``git push``
|
2019-02-24 19:14:25 +00:00
|
|
|
- ``make tag``
|