lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.quil: 0.16.0 -> 0.17.0

Diff: https://github.com/rigetti/quil-rs/compare/quil-py/v0.16.0...quil-py/v0.17.0

Changelog: https://github.com/rigetti/quil-rs/blob/quil-py/v0.17.0/quil-py/CHANGELOG.md

+7 -3
+7 -3
pkgs/development/python-modules/quil/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "quil"; 14 - version = "0.16.0"; 14 + version = "0.17.0"; 15 15 pyproject = true; 16 16 17 17 # error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12) ··· 21 21 owner = "rigetti"; 22 22 repo = "quil-rs"; 23 23 tag = "quil-py/v${version}"; 24 - hash = "sha256-sj+JjE6y+toIjHO1J2g+3gzQMcfSa6zzQeOySATU48w="; 24 + hash = "sha256-sQvHar52IFVUM+AssPEtBcSGVEma9e909K/5c8H0WQw="; 25 25 }; 26 26 27 27 cargoDeps = rustPlatform.fetchCargoVendor { 28 28 inherit pname version src; 29 - hash = "sha256-0KZikbCJgg4prR9XxfCJcZOTiV2Hcob2zLurxqCkH6I="; 29 + hash = "sha256-3qFrsevaVP2tPf0OV0hW6HhhWsj2BM/2sZUvdq1Aa4k="; 30 30 }; 31 31 32 32 buildAndTestSubdir = "quil-py"; ··· 48 48 nativeCheckInputs = [ 49 49 pytestCheckHook 50 50 syrupy 51 + ]; 52 + 53 + pytestFlags = [ 54 + "quil-py/tests_py" 51 55 ]; 52 56 53 57 meta = {