Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# reference the matrixe python version here.
- uses: actions/setup-python@v5
with:
python-version: 3.9.18
python-version: "3.12"

# Cache the installation of Poetry itself, e.g. the next step. This prevents the workflow
# from installing Poetry every time, which can be slow. Note the use of the Poetry version
Expand All @@ -33,7 +33,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: poetry-1.5.1-0
key: poetry-1.8.5-0

# Install Poetry. You could do this manually, or there are several actions that do this.
# `snok/install-poetry` seems to be minimal yet complete, and really just calls out to
Expand All @@ -46,7 +46,7 @@ jobs:
# cache it.
- uses: snok/install-poetry@v1
with:
version: 1.5.1
version: 1.8.5
virtualenvs-create: true
virtualenvs-in-project: true

Expand Down
1 change: 0 additions & 1 deletion nhlpy/api/query/filters/decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from nhlpy.api.query import InvalidQueryValueException
from nhlpy.api.query.filters import QueryBase


logger = logging.getLogger(__name__)


Expand Down
1 change: 0 additions & 1 deletion nhlpy/api/teams.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import List, Dict, Optional, Any
from nhlpy.http_client import Endpoint, HttpClient


# @dataclass
# class TeamInfo:
# """Data class for team information."""
Expand Down
Loading
Loading