File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3131 uses : actions/cache@v4
3232 with :
3333 path : ~/.local
34- key : poetry-1.1.12-0
34+ key : poetry-${{ matrix.python-version }}
3535
3636 # Install Poetry. You could do this manually, or there are several actions that do this.
3737 # `snok/install-poetry` seems to be minimal yet complete, and really just calls out to
4444 # cache it.
4545 - uses : snok/install-poetry@v1
4646 with :
47- version : 1.5.1
47+ version : 1.8.5
4848 virtualenvs-create : true
4949 virtualenvs-in-project : true
5050
5656 uses : actions/cache@v4
5757 with :
5858 path : .venv
59- key : pydeps-${{ hashFiles('**/poetry.lock') }}
59+ key : pydeps-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
6060
6161 # Install dependencies. `--no-root` means "install all dependencies but not the project
6262 # itself", which is what you want to avoid caching _your_ code. The `if` statement
7979 # https://github.com/astral-sh/ruff/issues/8430
8080 # - run: poetry run ruff format --check
8181 - name : Upload coverage reports to Codecov
82- uses : codecov/codecov-action@v4 .0.1
82+ uses : codecov/codecov-action@v5 .0.2
8383 with :
8484 token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " vapor-steam"
3- version = " 1.6.0 "
3+ version = " 1.6.1 "
44description = " TUI program to check the ProtonDB compatibility of all the games of a Steam user."
55authors = [" TabulateJarl8 <tabulatejarl8@gmail.com>" ]
66license = " GPLv3"
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ def compose(self) -> ComposeResult:
155155 id = 'user-rating' ,
156156 ),
157157 ),
158- DataTable [str | Text ](zebra_stripes = True ),
158+ DataTable [' str | Text' ](zebra_stripes = True ),
159159 id = 'body' ,
160160 )
161161 yield Footer ()
You can’t perform that action at this time.
0 commit comments