Skip to content

Commit

Permalink
Merge branch 'develop' into docs/update-moredocs
Browse files Browse the repository at this point in the history
  • Loading branch information
cqc-melf authored Nov 21, 2023
2 parents 1b47b78 + 6cf0ed5 commit 18f8bf1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ jobs:
if: matrix.os == 'macos-13-xlarge' && (github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch')
run: |
python${{ matrix.python-version }} -m pip install -U mypy
python${{ matrix.python-version }} -m pip install -U pybind11-stubgen
python${{ matrix.python-version }} -m pip install pybind11-stubgen==2.3.6 # https://github.com/CQCL/tket/issues/1135
cd pytket
./stub_generation/regenerate_stubs
git diff --quiet pytket/_tket && echo "Stubs are up-to-date" || exit 1 # fail if stubs change after regeneration
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nix-support/pytket.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ in {
# these directories aren't copied by setup.py, so we do it manually
cp -r ${
../pytket/pytket/circuit/display/js
} $out/lib/python3.10/site-packages/pytket/circuit/display/js;
} $out/lib/python${super.python3.pythonVersion}/site-packages/pytket/circuit/display/js;
cp -r ${
../pytket/pytket/circuit/display/static
} $out/lib/python3.10/site-packages/pytket/circuit/display/static;
} $out/lib/python${super.python3.pythonVersion}/site-packages/pytket/circuit/display/static;
'';
checkInputs = with super.python3.pkgs; [
pytest
Expand Down

0 comments on commit 18f8bf1

Please sign in to comment.