Skip to content
Merged
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 CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ master (unreleased)
- Added a tox job target to create a Django model graph using `dot`. Run `tox -e django_graph` to see the result. Since the database schema doesn't change that often, this tox target won't be associated with automated tests or doc generation - it's probably going to be a one-shot.
- Add/Confirm support of Django REST Framework 3.11 (#417).
- Added a thorough documentation for maintainers
- Pin psycopg2-binary to 2.8 in testing env to fix CI.

Release 7.0.0 (2021-03-11)
==========================
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ deps =
drf310: djangorestframework<3.11
drf311: djangorestframework<3.12
; When testing with postgresql
pg: psycopg2-binary
pg: psycopg2-binary>=2.8,<2.9

; Requirements from demo project
-rdemo/requirements-demo.pip
Expand Down