From 75e38903841a92581b508b451948a6ed24d4645a Mon Sep 17 00:00:00 2001 From: Jeff Quast Date: Sat, 1 Feb 2020 20:19:54 -0800 Subject: [PATCH] Fix sphinx build (#145) small fix in the recently introduced .readthedocs.yml --- .readthedocs.yml | 2 ++ tests/test_color.py | 1 - tests/test_formatters.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 8eb78c5d..51cc31b9 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -6,4 +6,6 @@ formats: all python: version: 3.7 install: + - method: setuptools + path: . - requirements: docs/requirements.txt diff --git a/tests/test_color.py b/tests/test_color.py index 46814a0e..6f044926 100644 --- a/tests/test_color.py +++ b/tests/test_color.py @@ -10,7 +10,6 @@ # local from blessed.color import COLOR_DISTANCE_ALGORITHMS from blessed.colorspace import RGBColor - # local from .accessories import TestTerminal, as_subprocess diff --git a/tests/test_formatters.py b/tests/test_formatters.py index 517dd634..15c02519 100644 --- a/tests/test_formatters.py +++ b/tests/test_formatters.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- """Tests string formatting functions.""" # std imports +import pickle import platform import multiprocessing -import pickle # 3rd party import mock