chore: bump version to 0.4.2

This commit is contained in:
rus07tam 2025-10-29 15:05:43 +00:00
parent dc33a78700
commit 7f25bcbcb4
4 changed files with 101 additions and 17 deletions

View file

@ -6,23 +6,20 @@
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
outputs = {
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
system: let
pkgs = import nixpkgs {
inherit system;
};
in
{
in {
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
python312
python310
];
buildInputs = with pkgs; [
@ -31,7 +28,7 @@
uv
isort
mypy
python312Packages.pylint
pylint
];
};
}