-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "setup Connected Services Error" due to latest API Changes (#240)
* Fix "setup Connected Services Error" due to latest API Changes * drop python 3.7 support and update pylint --------- Co-authored-by: John de Rooij <[email protected]>
- Loading branch information
Showing
14 changed files
with
327 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
fail-fast: false | ||
|
||
steps: | ||
|
@@ -34,7 +34,7 @@ jobs: | |
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.2.2 | ||
poetry-version: 1.5.1 | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
name: Pre-commit | ||
strategy: | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
runs-on: ubuntu-latest | ||
env: | ||
OS: ubuntu-latest | ||
|
@@ -29,7 +29,7 @@ jobs: | |
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.2.2 | ||
poetry-version: 1.5.1 | ||
|
||
- name: Install dependencies | ||
run: poetry install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,14 @@ description = "Python client for Toyota Connected Services." | |
authors = ["Simon Grud Hansen <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
version = "0.9.2" | ||
version = "0.9.3" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
] | ||
keywords = [ | ||
"Toyota", | ||
|
@@ -26,7 +26,7 @@ repository = "https://github.com/DurgNomis-drol/mytoyota" | |
"Release Notes" = "https://github.com/DurgNomis-drol/mytoyota/releases" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
python = "^3.8" | ||
langcodes = "^3.1" | ||
httpx = ">=0.18.1" | ||
arrow = "^1.1" | ||
|
@@ -38,7 +38,7 @@ black = ">=22.3, !=22.10.0" # https://github.com/psf/black/issues/3312 | |
flake8 = "^3.8.4" | ||
flake8-bugbear = "^22.10.27" | ||
flake8-comprehensions = "^3.4.0" | ||
pylint = "^2.7.2" | ||
pylint = "^3.0.2" | ||
isort = "^5.10.1" | ||
codespell = "^2.0.0" | ||
pytest = "^7.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters