Skip to content

Commit 77f7282

Browse files
authored
Merge pull request #238 from Mic92/dependabot/github_actions/cachix/install-nix-action-v29
build(deps): bump cachix/install-nix-action from V28 to 29
2 parents 7a3ad6d + d305220 commit 77f7282

File tree

5 files changed

+16
-25
lines changed

5 files changed

+16
-25
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: cachix/install-nix-action@V28
14+
- uses: cachix/install-nix-action@v29
1515
- name: run tests
1616
run:
1717
nix develop -c 'tox'

.github/workflows/update-flake-lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Checkout repository
1212
uses: actions/checkout@v4
1313
- name: Install Nix
14-
uses: cachix/install-nix-action@V28
14+
uses: cachix/install-nix-action@v29
1515
- name: Update flake.lock
1616
uses: DeterminateSystems/update-flake-lock@v24
1717
with:

flake.lock

Lines changed: 9 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
inputs = {
55
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
66
flake-parts.url = "github:hercules-ci/flake-parts";
7+
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
78
};
89

910
outputs = inputs@{ flake-parts, ... }:
@@ -13,11 +14,11 @@
1314
devShells.default = pkgs.mkShell {
1415
packages = with pkgs; [
1516
bashInteractive
16-
python38
1717
python39
1818
python310
19-
(python311.withPackages(ps: [ps.setuptools ps.tox ps.wheel]))
20-
python312
19+
python311
20+
(python312.withPackages(ps: [ps.setuptools ps.tox ps.wheel]))
21+
python313
2122
pypy3
2223
twine
2324
mypy

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,py312,pypy3
2+
envlist = py39,py310,py311,py312,py313,pypy3
33

44
[testenv]
55
deps = coverage

0 commit comments

Comments
 (0)