Skip to content

Commit

Permalink
chore(deps): default to python 3.11 with nix (#8444)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Feb 25, 2024
1 parent 7fad223 commit a755315
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
packages = {
inherit (pkgs) ibis39 ibis310 ibis311;

default = pkgs.ibis310;
default = pkgs.ibis311;

inherit (pkgs) update-lock-files gen-all-extras gen-examples check-release-notes-spelling;
};
Expand All @@ -137,7 +137,7 @@
ibis310 = mkDevShell pkgs.ibisDevEnv310;
ibis311 = mkDevShell pkgs.ibisDevEnv311;

default = ibis310;
default = ibis311;

preCommit = pkgs.mkShell {
name = "preCommit";
Expand Down
2 changes: 1 addition & 1 deletion nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ in
gen-examples = pkgs.writeShellApplication {
name = "gen-examples";
runtimeInputs = [
pkgs.ibisDevEnv310
pkgs.ibisDevEnv311
(pkgs.rWrapper.override {
packages = with pkgs.rPackages; [
Lahman
Expand Down

0 comments on commit a755315

Please sign in to comment.