Skip to content

Commit

Permalink
Add constraints to docs install
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsCoding committed Sep 12, 2023
1 parent 01cee00 commit 8a6109a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ m2r2
sphinx>=5.0
jupyter-sphinx
pydot
pillow>=4.2.1, <10.0.0
pillow>=4.2.1
reno>=3.4.0
qiskit-sphinx-theme~=1.14.0rc1
matplotlib>=3.4
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def lint(session):
def docs(session):
session.install(*deps)
session.install(".", "-c", "constraints.txt")
session.install("-r", "docs/source/requirements.txt")
session.install("-r", "docs/source/requirements.txt", "-c", "constraints.txt")
session.run("python", "-m", "ipykernel", "install", "--user")
session.run("jupyter", "kernelspec", "list")
session.chdir("docs")
Expand Down

0 comments on commit 8a6109a

Please sign in to comment.