summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/requirements.txt3
-rw-r--r--doc/source/contributor/testing.rst8
2 files changed, 5 insertions, 6 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt
index eead9e1..72f239e 100644
--- a/doc/requirements.txt
+++ b/doc/requirements.txt
@@ -1,7 +1,6 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
-sphinx>=1.8.0,!=2.1.0;python_version>='3.4' # BSD
+sphinx>=1.8.0,!=2.1.0 # BSD
sphinxcontrib-svg2pdfconverter>=0.1.0 # BSD
openstackdocstheme>=1.20.0 # Apache-2.0
diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst
index 03da8f3..d8a524b 100644
--- a/doc/source/contributor/testing.rst
+++ b/doc/source/contributor/testing.rst
@@ -23,8 +23,8 @@ with the following command:
.. code-block:: bash
- # Executes tests on Python 2.7
- tox -e py27
+ # Executes tests on Python 3.7
+ tox -e py37
.. note::
@@ -40,11 +40,11 @@ with the following command:
# runs a single test with the function named
# test_should_entity_str
- tox -e py27 -- test_should_entity_str
+ tox -e py37 -- test_should_entity_str
# runs only tests in the WhenTestingSecrets class and
# the WhenTestingOrderManager class
- tox -e py27 -- '(WhenTestingSecrets|WhenTestingOrderManager)'
+ tox -e p37 -- '(WhenTestingSecrets|WhenTestingOrderManager)'
The function name or class specified must be one located in the
`barbicanclient/tests` directory.