File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed
Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1414 python-version :
1515 - " 3.10"
1616 steps :
17- - uses : actions/cache@v2
17+ - uses : actions/cache@v4
1818 with :
1919 path : ~/.cache/pip
2020 key : ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
Original file line number Diff line number Diff line change 1+ { pkgs , ...} : {
2+ packages = [
3+ pkgs . neovim
4+ pkgs . python311
5+ pkgs . python311Packages . pip
6+ pkgs . poetry
7+ ] ;
8+ env = { } ;
9+ idx = {
10+ # check extensions on https://open-vsx.org/
11+ extensions = [
12+ "vscodevim.vim"
13+ "ms-python.python"
14+ "ms-python.debugpy"
15+ ] ;
16+ workspace = {
17+ #onCreate = {
18+ #}
19+ onStart = {
20+ poetry-project = ''
21+ poetry config --local virtualenvs.in-project true
22+ poetry install
23+ '' ;
24+ } ;
25+ } ;
26+ # Enable previews and customize configuration
27+ previews = { } ;
28+ } ;
29+ }
Original file line number Diff line number Diff line change 1+ [virtualenvs ]
2+ in-project = true
You can’t perform that action at this time.
0 commit comments