Skip to content

Commit

Permalink
Fix some make error (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper authored Sep 7, 2023
1 parent e7d81a9 commit f4da4fd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
2 changes: 1 addition & 1 deletion dev-tools/start-docs-host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ set -e
docker run --rm \
-it \
-p 8080:80 \
-v $(pwd)/../docs/build/:/usr/share/nginx/:ro \
-v $(pwd)/../docs/build/html:/usr/share/nginx/html:ro \
nginx
16 changes: 0 additions & 16 deletions docs/source/collectors/base.rst

This file was deleted.

17 changes: 15 additions & 2 deletions docs/source/collectors/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,23 @@ Collector
Collector will convert ``data_t`` to :doc:`Tracking <models>`
and store them in a somewhere.


.. autoclass:: duetector.collectors.base.Collector
:members:
:undoc-members:
:private-members:


.. autoclass:: duetector.collectors.base.DequeCollector
:members:
:undoc-members:
:private-members:
:show-inheritance:


.. toctree::
:maxdepth: 2
:caption: Avaliable Collector
:caption: Avaliable Collector and Data Models

Base Collectors <base>
DB Collectors <db>
Data Models <models>
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytype"]
docs = ["Sphinx", "sphinx-rtd-theme", "sphinx-click"]
docs = ["Sphinx<=7.2.4", "sphinx-rtd-theme", "sphinx-click"]

[project.scripts]
duectl = "duetector.cli.main:cli"
Expand Down

0 comments on commit f4da4fd

Please sign in to comment.