Skip to content

Commit

Permalink
Dropped docs support
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart van der Schoor committed Feb 29, 2024
1 parent 2e297c0 commit ccbcf41
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 197 deletions.
20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

17 changes: 0 additions & 17 deletions docs/check_sphinx.py

This file was deleted.

61 changes: 0 additions & 61 deletions docs/conf.py

This file was deleted.

60 changes: 0 additions & 60 deletions docs/index.rst

This file was deleted.

18 changes: 0 additions & 18 deletions docs/quickstart.rst

This file was deleted.

7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies = [

[project.urls]
Homepage = "https://github.com/maykinmedia/mail-editor"
Documentation = "http://mail_editor.readthedocs.io/en/latest/"
Documentation = "https://github.com/maykinmedia/mail-editor"
"Bug Tracker" = "https://github.com/maykinmedia/mail-editor/issues"
"Source Code" = "https://github.com/maykinmedia/mail-editor"

Expand All @@ -56,10 +56,6 @@ tests = [
coverage = [
"pytest-cov",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
]
release = [
"bump-my-version",
"twine",
Expand All @@ -85,7 +81,6 @@ current_version = "0.3.5"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
{filename = "docs/conf.py"},
]

[tool.coverage.report]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude=migrations,static,media
[flake8]
ignore=E203,E261,E501,E731,F405,W293,W291,W503,F841,E741
max-line-length=120
exclude=env,.tox,docs
exclude=env,.tox

[isort]
combine_as_imports = true
Expand Down
15 changes: 1 addition & 14 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ envlist =
isort
black
flake8
docs
skip_missing_interpreters = true

[gh-actions]
Expand Down Expand Up @@ -41,21 +40,9 @@ commands = isort --check-only --diff .
[testenv:black]
extras = tests
skipsdist = True
commands = black --check mail_editor docs tests
commands = black --check mail_editor tests

[testenv:flake8]
extras = tests
skipsdist = True
commands = flake8 .

[testenv:docs]
basepython=python
changedir=docs
skipsdist=true
extras =
tests
docs
commands=
py.test check_sphinx.py -v \
--tb=auto \
{posargs}

0 comments on commit ccbcf41

Please sign in to comment.