Skip to content

Commit 26067a4

Browse files
committed
Fix details in the doc too
1 parent 4dd70c6 commit 26067a4

File tree

4 files changed

+9
-24
lines changed

4 files changed

+9
-24
lines changed

AUTHORS.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Contributors (by alphabetic order)
66
----------------------------------
77

88
* `ewjoachim <https://github.com/ewjoachim>`_
9-
- `@brunobord <https://github.com/brunobord>`_
10-
- `@k4nar <https://github.com/k4nar>`_
11-
- `@zebuline <https://github.com/zebuline>`_
9+
* `@brunobord <https://github.com/brunobord>`_
10+
* `@k4nar <https://github.com/k4nar>`_
11+
* `@zebuline <https://github.com/zebuline>`_

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ History
66
1.0.6 (unreleased)
77
++++++++++++++++++
88

9+
- Run tests for Django 4.1 and Python 3.11
910

1011
1.0.5 (2019-04-23)
1112
++++++++++++++++++

README.rst

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Django Readonly Field
1111
.. image:: https://img.shields.io/codecov/c/github/peopledoc/django-readonly-field/master.svg
1212
:target: https://codecov.io/github/peopledoc/django-readonly-field?branch=master
1313

14-
Make Django model fields readonly. In other words, make it so that Django will
15-
read from your fields in your database, but never try to write them. It can be
14+
Make some Django model fields readonly. In other words, it lets you tell Django to
15+
read some fields from your database, but never try to write those back. It can be
1616
useful if your fields are populated by triggers or something.
1717

1818
Requirements
@@ -72,19 +72,19 @@ You might have to write an SQL migration for this.
7272
Running Tests
7373
--------------
7474

75-
You will need an usable Postgresql database in ordre to test the project.
75+
You will need a usable Postgresql database in order to test the project.
7676

7777
::
7878

7979
source <YOURVIRTUALENV>/bin/activate
8080
export DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME
81-
(myenv) $ pip install -r requirements_test.txt
81+
(myenv) $ pip install -r requirements.txt
8282

8383
Run tests for a specific version
8484

8585
::
8686

87-
(myenv) $ python runtests.py
87+
(myenv) $ pytest
8888

8989

9090
Run tests for all versions (if tox is installed globally, you don't need a
@@ -94,15 +94,6 @@ virtual environment)
9494

9595
$ tox
9696

97-
Using the project
98-
-----------------
99-
100-
Many operations are documented in the Makefile. For more information, use:
101-
102-
::
103-
104-
$ make help
105-
10697

10798
Credits
10899
---------

docs/installation.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,4 @@
22
Installation
33
============
44

5-
At the command line::
6-
7-
$ easy_install django-readonly-field
8-
9-
Or, if you have virtualenvwrapper installed::
10-
11-
$ mkvirtualenv django-readonly-field
125
$ pip install django-readonly-field

0 commit comments

Comments
 (0)