Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
skipPush: true
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.11'
- name: 'Install Poetry'
run: |
curl -sSL https://install.python-poetry.org | python3 -
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
p2n = poetry2nix.lib.mkPoetry2Nix { pkgs = final; };
in {
kup = p2n.mkPoetryApplication {
python = prev.python39;
python = prev.python311;
projectDir = ./.;
# We remove `"dev"` from `checkGroups`, so that poetry2nix does not try to resolve dev dependencies.
checkGroups = [];
Expand Down