Skip to content

Commit

Permalink
fix(deps): Tidy up requirements.txt unused deps #188
Browse files Browse the repository at this point in the history
Requirements contained several packages not required for this project.

closes #188
  • Loading branch information
imAsparky committed Oct 31, 2021
1 parent 2b626cf commit 5bd1772
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 79 deletions.
3 changes: 2 additions & 1 deletion .pyup.yml
Expand Up @@ -32,4 +32,5 @@ pr_prefix: "fix(pyup): "
close_prs: False

requirements:
- "requirements.txt"
- "requirements_dev.txt"
- "docs/requirements.txt"
6 changes: 6 additions & 0 deletions docs/requirements.txt
@@ -0,0 +1,6 @@
autoclasstoc @ git+git://github.com/imAsparky/autoclasstoc.git@6517d2b6158b2967163b2114fc1b6eb3586b9fde
furo==2021.10.9
myst-parser==0.15.2
Sphinx==4.2.0
sphinx-copybutton==0.4.0
sphinx_inline_tabs==2021.4.11b9
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -40,7 +40,7 @@
"sphinx.ext.autosummary",
"sphinx_copybutton",
"sphinx_inline_tabs",
"autoclasstoc_2",
"autoclasstoc",
"sphinx.ext.todo",
"sphinx.ext.intersphinx",
]
Expand Down
77 changes: 0 additions & 77 deletions requirements.txt

This file was deleted.

6 changes: 6 additions & 0 deletions requirements_dev.txt
@@ -0,0 +1,6 @@
-r docs/requirements.txt

pre-commit==2.15.0
pytest==6.2.5
tox==3.24.4
watchdog==1.0.2
13 changes: 13 additions & 0 deletions tox.ini
@@ -1,3 +1,16 @@
[tox]
skipsdist = true
skip_missing_interpreters = true
envlist =

py39-docs

[testenv:docs]
basepython=python
changedir=docs/source
deps= -r{toxinidir}/docs/requirements.txt
commands=
sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

[flake8]
ignore = E203, E266, E501, W503, F403, F401
Expand Down

0 comments on commit 5bd1772

Please sign in to comment.