Skip to content

Commit

Permalink
v0.14.3 Release Candidate (#176)
Browse files Browse the repository at this point in the history
- Minor fixes
- Tutorial section in Readme

---------

Co-authored-by: Senbei123 <[email protected]>
  • Loading branch information
vasqued2 and Senbei123 authored Aug 28, 2024
1 parent d6b4671 commit 8ff4087
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -25,4 +25,4 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
pylint $(git ls-files '*.py')
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,3 +380,6 @@ TeamTracker supports the following services.
NOTE: The functionality and input parameters of the `call_api` service are subject to change as new uses emerge. If you have ideas or suggestions for specific use cases, open an Issue so they can be tracked.

Additional details available on the Services tab in Developer Tools.

## Tutorials
You will find a german tutorial how to use this integration here: https://youtu.be/CYK7JrNmvfg, and https://youtu.be/hh3kCk-f2vY (Created by Tristan's Smartes Heim)
1 change: 1 addition & 0 deletions custom_components/teamtracker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ def update_team_info(self, sport_path, league_path, team_id, conference_id=""):

self.sport_path = sport_path
self.league_path = league_path
self.league_id = "XXX"
self.team_id = team_id
self.conference_id = conference_id

Expand Down
2 changes: 1 addition & 1 deletion custom_components/teamtracker/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@

# Misc
TEAM_ID = ""
VERSION = "v0.14.2"
VERSION = "v0.14.3"
ISSUE_URL = "https://github.com/vasqued2/ha-teamtracker"
DOMAIN = "teamtracker"
ATTRIBUTION = "Data provided by ESPN"
Expand Down
10 changes: 5 additions & 5 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
async-timeout
black
isort
pytest
pytest-asyncio
pytest-cov
pytest-mock
pytest-homeassistant-custom-component
pytest>=8.0.2
pytest-asyncio>=0.23.5
pytest-cov>=4.1.0
pytest-mock>=3.14.0
pytest-homeassistant-custom-component>=0.13.109
arrow
aiofiles

0 comments on commit 8ff4087

Please sign in to comment.