From b40ca17263f20a09f6d80bd74c375ffa9f1b46e1 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Fri, 12 Oct 2018 14:06:09 -0400 Subject: [PATCH] Remove rstcheck from build script --- build.sh | 2 +- requirements.txt | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/build.sh b/build.sh index c77d291..6ef59d4 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash . ~/venv/domainaware/bin/activate -pip install -U -r requirements.txt && rstcheck --report warning README.rst && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && rm -rf dist/ build/ && python3 setup.py sdist && python3 setup.py bdist_wheel +pip install -U -r requirements.txt && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && rm -rf dist/ build/ && python3 setup.py sdist && python3 setup.py bdist_wheel diff --git a/requirements.txt b/requirements.txt index 3087d84..91f72ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,11 +12,6 @@ elasticsearch>=6.3.0,<7.0.0 elasticsearch-dsl>=6.2.1,<7.0.0 kafka-python flake8 -pytest -pytest-cov -sphinx==1.7.9 +sphinx sphinx_rtd_theme -collective.checkdocs wheel -rstcheck -