Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Apr 11, 2024
1 parent e2d04c6 commit 0eb3d16
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ jobs:
if: matrix.django-version == 'master'
- run: |
python -m pip install coverage
python -m pip install psycopg2-binary==2.9.5
python -m pip install psycopg==3.1.8
- run: coverage run --source=modeltrans manage.py test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Translates Django model fields in a `JSONField` using a registration approach.

- Uses one PostgreSQL `jsonb`-field per model (via `django.db.models.JSONField`)
- Django 4.2, 5.0 (with their supported python versions)
- PostgreSQL >= 13 and Psycopg2 >= 2.5.4.
- PostgreSQL >= 13 and the appropriate `psycopg` version for your Django version
- [Available on pypi](https://pypi.python.org/pypi/django-modeltrans)
- [Documentation](http://django-modeltrans.readthedocs.io/en/latest/)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ django-modeltrans - Translate model fields using a `JSONField`

- Uses one `django.db.models.JSONField` (PostgreSQL JSONB field) for every record.
- Django Django 4.2, 5.0 (with their supported python versions)
- PostgreSQL >= 13 and Psycopg2 >= 2.5.4.
- PostgreSQL >= 13 and the appropriate `psycopg` version for your Django version

About the app:

Expand Down
4 changes: 2 additions & 2 deletions example/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==3.2.*
psycopg2-binary
Django==5.0.*
psycopg
pytz==2021.1
wheel==0.38.1
django-tables2==2.4.0
Expand Down
4 changes: 2 additions & 2 deletions test_migrations/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Django==2.2.*
psycopg2==2.7.1
Django==5.0.*
psycopg
django-modeltranslation==0.12.1

0 comments on commit 0eb3d16

Please sign in to comment.