Skip to content

Commit 009a226

Browse files
authored
Merge branch 'main' into update-release-v0.22.1
2 parents c20a295 + a7e34e1 commit 009a226

File tree

6 files changed

+35
-28
lines changed

6 files changed

+35
-28
lines changed

.github/workflows/documentation.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
- name: Install pipenv
2020
uses: dschep/install-pipenv-action@v1
2121
- name: Install dependencies
22-
run: pipenv install --dev
23-
- name: Build docs
22+
run: pipenv install --dev
23+
- name: Build docs
2424
uses: ammaraskar/sphinx-action@master
2525
with:
2626
pre-build-command: "pip install sphinx_rtd_theme && sphinx-apidoc -f -o docs meilisearch/"
@@ -30,16 +30,4 @@ jobs:
3030
with:
3131
github_token: ${{ secrets.GITHUB_TOKEN }}
3232
publish_dir: docs/_build/html
33-
force_orphan: true
34-
35-
36-
37-
38-
39-
40-
41-
42-
43-
44-
45-
33+
force_orphan: true

Pipfile.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ You’d like to contribute? Don’t hesitate to check out our [contributing guid
4646

4747
## 📖 Documentation
4848

49-
See our [Documentation](https://docs.meilisearch.com/learn/tutorials/getting_started.html) or our [API References](https://docs.meilisearch.com/reference/api/).
49+
To learn more about Meilisearch Python, refer to the in-depth [Meilisearch Python documentation](https://meilisearch.github.io/meilisearch-python/). To learn more about Meilisearch in general, refer to our [documentation](https://docs.meilisearch.com/learn/getting_started/quick_start.html) or our [API reference](https://docs.meilisearch.com/reference/api/overview.html).
5050

5151
## 🔧 Installation
5252

docs/conf.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,7 @@
5252
# Add any paths that contain custom static files (such as style sheets) here,
5353
# relative to this directory. They are copied after the builtin static files,
5454
# so a file named "default.css" will overwrite the builtin "default.css".
55-
html_static_path = []
55+
html_static_path = []
56+
57+
# This value contains a list of modules to be mocked up.
58+
autodoc_mock_imports = ["camel_converter"]

docs/meilisearch.models.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ meilisearch.models package
44
Submodules
55
----------
66

7+
meilisearch.models.client module
8+
--------------------------------
9+
10+
.. automodule:: meilisearch.models.client
11+
:members:
12+
:undoc-members:
13+
:show-inheritance:
14+
715
meilisearch.models.document module
816
----------------------------------
917

@@ -20,6 +28,14 @@ meilisearch.models.index module
2028
:undoc-members:
2129
:show-inheritance:
2230

31+
meilisearch.models.ressource module
32+
-----------------------------------
33+
34+
.. automodule:: meilisearch.models.ressource
35+
:members:
36+
:undoc-members:
37+
:show-inheritance:
38+
2339
meilisearch.models.task module
2440
------------------------------
2541

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
long_description_content_type="text/markdown",
1919
url="https://github.com/meilisearch/meilisearch-python",
2020
packages=find_packages(exclude=("tests*",)),
21-
project_urls={"Documentation": "https://docs.meilisearch.com/",},
21+
project_urls={"Meilisearch Documentation": "https://docs.meilisearch.com/", "Documentation": "https://meilisearch.github.io/meilisearch-python/",},
2222
keywords="search python meilisearch",
2323
platform="any",
2424
classifiers=[

0 commit comments

Comments
 (0)