Skip to content

Commit

Permalink
Update base copyright; make tox.ini use Python 3.7.
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Smith <[email protected]>
(cherry picked from commit c64510b)
  • Loading branch information
benjsmi authored and denyeart committed Jul 28, 2023
1 parent 221b6b7 commit 923ac04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

# General information about the project.
project = u'hyperledger-fabricdocs'
copyright = u'2017, hyperledger'
copyright = u'2017-2023, hyperledger'
author = u'hyperledger'

# The version info for the project you're documenting, acts as replacement for
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
minversion = 1.6
minversion = 3.4
envlist =
docs,
docs-linkcheck
Expand All @@ -11,8 +11,12 @@ commands =
sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/source {toxinidir}/docs/build/html
echo "Generated docs available in {toxinidir}/docs/build/html"
whitelist_externals = echo
basepython=python3.7
ignore_basepython_conflict=True

[testenv:docs-linkcheck]
deps = -rdocs/requirements.txt
commands =
sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/source {toxinidir}/docs/build/linkcheck
basepython=python3.7
ignore_basepython_conflict=True

0 comments on commit 923ac04

Please sign in to comment.