You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Poetry ends up configured to use python 3.10 even though I've specified python 3.8:
$ nix develop
trace: warning: 'deps' argument to makeSetupHook is deprecated and will be removed in release 23.11., Please use propagatedBuildInputs instead. content of deps: /nix/store/micahg85qjjalavnrjsv6yip8m1m4qds-python3.10-pip-23.0.1 /nix/store/if8hmh5jb452r7xrqdabc83gdazx825n-python3.10-wheel-0.38.4
$ poetry run python --version
Python 3.10.9
I'm not sure what's up with that warning, but I've found that I can work around the above error by running:
$ poetry env use $(which python)
...which I suppose I could do in a shellHook, but it seems like there should be a better way.
Describe the issue
Poetry ends up configured to use python 3.10 even though I've specified python 3.8:
I'm not sure what's up with that warning, but I've found that I can work around the above error by running:
...which I suppose I could do in a shellHook, but it seems like there should be a better way.
Additional context
default.nix
/shell.nix
/flake.nix
:pyproject.toml
:The text was updated successfully, but these errors were encountered: