Skip to content

Commit

Permalink
Added nix-community cachix, pinned to tket's nixpkgs, added sympy to …
Browse files Browse the repository at this point in the history
…mypy ignore list
  • Loading branch information
jake-arkinstall committed Jul 30, 2024
1 parent 3a64cfa commit 2c349d1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
26 changes: 14 additions & 12 deletions flake.lock

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

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
description = "Pytket Cutensornet Extension";
nixConfig.extra-substituters = "https://tket.cachix.org https://cache.nixos.org https://cuda-maintainers.cachix.org";
nixConfig.extra-substituters = "https://tket.cachix.org https://cache.nixos.org https://cuda-maintainers.cachix.org https://nix-community.cachix.org";
nixConfig.trusted-public-keys = ''
tket.cachix.org-1:ACdm5Zg19qPL0PpvUwTPPiIx8SEUy+D/uqa9vKJFwh0=
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E=
nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
'';
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.tket.url = "github:CQCL/tket";
inputs.tket.inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "tket/nixpkgs";
outputs = { self, nixpkgs, flake-utils, tket }:
flake-utils.lib.eachDefaultSystem (system:
let
Expand Down
4 changes: 2 additions & 2 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ warn_no_return = False
warn_return_any = True
warn_unreachable = True

[mypy-pytest.*]
[mypy-lark.*]
ignore_missing_imports = True
ignore_errors = True

[mypy-lark.*]
[mypy-sympy.*]
ignore_missing_imports = True
ignore_errors = True

0 comments on commit 2c349d1

Please sign in to comment.