Skip to content

Commit

Permalink
fix workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhill1 committed Nov 27, 2023
1 parent f834a9b commit c6c6969
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
python3 -m pip install --upgrade pip
python3 -m pip install -r docs/requirements.txt
python3 -m pip install -e .
- name: Build docs
run: |
sphinx-build -W -b html docs/ docs/build/html
5 changes: 3 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pylint black isort
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
ppython3 -m pip install -r requirements-dev.txt
- name: Check isort, pylint, black, headers
run: |
pylint qbraid_qir tests tools
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include *.txt *.md
recursive-include docs *.rst *.py *.png *.ico
recursive-include docs *.rst *.py *.png *.ico *.txt
recursive-include qbraid_qir *.py
recursive-include tools *.py
prune docs/build/

0 comments on commit c6c6969

Please sign in to comment.