Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Instruction to install django-simple-history before exectuing runtests.py is missing #1294

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Unreleased
- Added temporary requirement on ``asgiref>=3.6`` while the minimum required Django
version is lower than 4.2 (gh-1261)
- Small performance optimization of the ``clean-duplicate_history`` command (gh-1015)
- Added ``pip install django-simple-history`` command in the Testing section of CONTRIBUTING.rst (gh-1293)
- Support Simplified Chinese translation (gh-1281)

3.4.0 (2023-08-18)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To run tox and generate an HTML code coverage report (available in the
make test

To quickly run the tests against a single version of Python and Django (note: you must
``pip install django`` beforehand)::
``pip install django`` and ``pip install django-simple-history`` beforehand)::

python runtests.py

Expand Down