Skip to content

Commit

Permalink
Merge pull request #207 from barseghyanartur/dev
Browse files Browse the repository at this point in the history
Fixes in docs (#206)
  • Loading branch information
barseghyanartur authored Oct 11, 2024
2 parents 3270c32 + 89cd24d commit bd0d183
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
# - MacOs
python-version:
- "3.14.0-alpha.0"
- "3.13.0-rc.3"
- "3.13"
- "3.12"
- "3.11"
- "3.10"
Expand Down
6 changes: 3 additions & 3 deletions SECURITY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ It's recommended to use the latest version.
┌─────────────────┬────────────────┐
│ Version │ Supported │
├─────────────────┼────────────────┤
│ 0.9.x │ Yes │
│ 0.10.x │ Yes │
├─────────────────┼────────────────┤
│ 0.8.x │ Yes │
│ 0.9.x │ Yes │
├─────────────────┼────────────────┤
│ < 0.8 │ No │
│ < 0.9 │ No │
└─────────────────┴────────────────┘
.. note::
Expand Down
2 changes: 2 additions & 0 deletions docs/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -403,3 +403,5 @@ After that you can use it as follows:
.. code-block:: sh
python address_cli.py --help
----
2 changes: 2 additions & 0 deletions docs/creating_archives.rst
Original file line number Diff line number Diff line change
Expand Up @@ -326,3 +326,5 @@ Using text templates:
"""
# EML file
eml_file = FAKER.eml_file(content=StringTemplate(template))
----
2 changes: 2 additions & 0 deletions docs/creating_docx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,5 @@ Using text templates:
docx_file_10 = FAKER.docx_file(
texts=[StringTemplate(template) for _ in range(10)],
)
----
2 changes: 2 additions & 0 deletions docs/creating_images.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,5 @@ With ``size`` and ``color`` tweaks:

All other formats (``SVG``, ``BMP``, ``GIF``, ``TIF`` and ``PPM``) work in
exact same way.

----
2 changes: 2 additions & 0 deletions docs/creating_odt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,5 @@ Using text templates:
odt_file_10 = FAKER.odt_file(
texts=[StringTemplate(template) for _ in range(10)],
)
----
2 changes: 2 additions & 0 deletions docs/creating_pdf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,5 @@ With ``nb_pages`` tweak:

*See the full example*
:download:`here <_static/examples/creating_pdf/graphic_pdf_file_2.py>`

----
3 changes: 2 additions & 1 deletion docs/customization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ You can now use both ``FAKER`` and ``FACTORY`` as you would normally do.
*Filename: factories.py*

.. code-block:: python
:name: test_customization_factories
from fake import ModelFactory, SubFactory, post_save, pre_save
Expand Down Expand Up @@ -244,3 +243,5 @@ You can now use both ``FAKER`` and ``FACTORY`` as you would normally do.
class Meta:
model = Person
----
2 changes: 2 additions & 0 deletions docs/factories.rst
Original file line number Diff line number Diff line change
Expand Up @@ -414,3 +414,5 @@ factories.
:download:`here <_static/examples/factories/sqlmodel/article/factories.py>`

*Used just like in previous example.*

----
2 changes: 2 additions & 0 deletions docs/recipes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1774,3 +1774,5 @@ Sample output:
.. code-block:: text
1234 Aa
----

0 comments on commit bd0d183

Please sign in to comment.