Skip to content

Commit

Permalink
chore(deps): downgrade nixpkgs (#8834)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Mar 31, 2024
1 parent 9046ce7 commit 6a08012
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
1 change: 0 additions & 1 deletion .github/workflows/nix-skip-helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- run: echo "No build required"
1 change: 0 additions & 1 deletion .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions flake.lock

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

10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};

nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";

poetry2nix = {
url = "github:nix-community/poetry2nix";
Expand Down Expand Up @@ -73,7 +73,7 @@
git
just
nixpkgs-fmt
nodePackages.prettier
nodejs_20.pkgs.prettier
shellcheck
shfmt
statix
Expand All @@ -98,7 +98,7 @@
# link checking
lychee
# release automation
nodejs
nodejs_20
# used in notebooks to download data
curl
# docs
Expand Down Expand Up @@ -138,7 +138,7 @@
ibis311 = mkDevShell pkgs.ibisDevEnv311;
ibis312 = mkDevShell pkgs.ibisDevEnv312;

default = ibis312;
default = ibis311;

preCommit = pkgs.mkShell {
name = "preCommit";
Expand All @@ -152,7 +152,7 @@

release = pkgs.mkShell {
name = "release";
nativeBuildInputs = with pkgs; [ git poetry nodejs unzip gnugrep ];
nativeBuildInputs = with pkgs; [ git poetry nodejs_20 unzip gnugrep ];
};
};
}
Expand Down
2 changes: 1 addition & 1 deletion nix/overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ in
ibisDevEnv312 = mkPoetryDevEnv pkgs.python312;

ibisSmallDevEnv = mkPoetryEnv {
python = pkgs.python312;
python = pkgs.python311;
groups = [ "dev" ];
extras = [ ];
};
Expand Down

0 comments on commit 6a08012

Please sign in to comment.